@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* White background */
    color: #333333;
}

/* Green Headers & Text */
h1, h2, h3, h4 {
    color: #1e5221; /* Dark Green */
}

.text-green {
    color: #2d7a31; /* Herbal Green */
}

/* Yellow/Gold Icons */
.icon-yellow {
    color: #d4af37; 
    font-size: 24px;
}

/* Custom Buttons */
.btn-custom {
    background-color: #2d7a31; /* Herbal Green */
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-custom:hover {
    background-color: #1e5221; /* Darker green on hover */
}

/* Clean Boxes for Dashboard */
.dashboard-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #2d7a31;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}