/* ---------- GLOBAL STYLES ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    padding: 20px;
    line-height: 1.6;
}

/* ---------- HEADER ---------- */

h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #222;
    font-size: 36px;
    font-weight: 600;
}

p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* ---------- DASHBOARD CONTAINER ---------- */

.dashboard {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ---------- IFRAME RESPONSIVENESS ---------- */

.dashboard iframe {
    width: 100%;
    height: 820px;
    border: none;
    border-radius: 10px;
}

/* ---------- MOBILE RESPONSIVE ---------- */

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .dashboard iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }

    .dashboard iframe {
        height: 500px;
    }
}
