/*
 * responsive.css - Media queries til responsivt design.
 * Tilpasser layoutet til forskellige skærmstørrelser.
 * Under 420px: phone-frame fjernes, appen fylder hele skærmen.
 */

@media (max-width: 420px) {
    .phone-frame {
        width: 100%;
        height: auto;
        min-height: 100vh;
        border-radius: 0;
        border: none;
        padding: 16px;
    }

    body {
        padding: 0;
    }

    .summary-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
}
