html, body {
    height: 100%;
    margin: 0;
}

.full-height {
    min-height: 100vh;
    display: flex;
}

.bg-green-main {
    background-color: #007A3D;
}

input::placeholder {
    font-weight: 200;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
}

/* Typography */
.font-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
}

.font-body {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
}

.font-heading-1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

.font-heading-2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.sidebar a {
    display: block;
    width: 100%;
    padding: 0.4em 1em;
    margin-bottom: 0.5em;
    border-radius: 0.5em;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.active {
    background-color: rgba(0, 0, 0, 0.2);
    /* color: #fff; */
}

main {
    background-color: #D9D9D9;
    min-height: 100vh;
}

.dashboard-item {
    padding-top:1em;
    border-radius: 0.6em;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.dashboard-item p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.dashboard-item p:nth-of-type(2) {
    font-size: 2.25rem;
}