/* ------------------------ GENERAL STYLES ------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F8F8;
    color: #333333;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

/* ------------------------ LOGO & HEADER ------------------------ */
.logo-and-tagline {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #777777;
    font-weight: 400;
}

.dashboard-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    text-align: center;
}

/* ------------------------ CARD CONTENT ------------------------ */
.card-content {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin-bottom: 40px;
}

.card-content h3 {
    color: #4A90E2;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.card-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

/* ------------------------ LINKS ------------------------ */
a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #3B7CDA;
    text-decoration: underline;
}

/* ------------------------ FOOTER SNIPPET ------------------------ */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    color: #777777;
}

footer a {
    margin: 0 8px;
}

/* ------------------------ RESPONSIVE ------------------------ */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .dashboard-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .card-content {
        padding: 20px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 601px) and (max-width: 992px) {
    .dashboard-title {
        font-size: 2em;
    }

    .card-content {
        padding: 22px;
    }
}