body {
    font-family: 'Inter', sans-serif;
    background: #f6f8fa;
    color: #222;
}

/* TOP BAR */
.topbar {
    background: #91C649; /* primary green */
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.topbar .logo {
    height: 55px;
}

/* BUTTON THEME */
.btn-theme {
    background: #47AF8F;
    color: white;
    font-weight: 600;
    border-radius: 6px;
}
.btn-theme:hover {
    background: #3e9a7d;
    color: #fff;
}

/* TEXT THEME COLOR */
.text-theme {
    color: #47AF8F;
}

/* CARD STYLES */
.card {
    border-radius: 10px;
    border: none;
}

.logo {
    background-color: white; /* Sets the background */
    padding: 5px;            /* Adds space around the logo so the white is visible */
    border-radius: 5px;      /* Optional: rounds the corners slightly */
}