

/* 🌟 General Page Styling */
body {
    background-color: #f4f6f9;
    color: #333;
}

/* 🌟 Section Titles */
.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #381302;
    margin-bottom: 15px;
    border-left: 4px solid #381302;
    padding-left: 10px;
}

/* 🌟 Dark Box (Applications) */
.green-box {
    background: linear-gradient(to right, #381302, #702906);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    min-height: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.green-box:hover {
    transform: translateY(-3px);
}
.green-box h6 {
    font-weight: bold;
    margin-bottom: 10px;
}
.green-box select {
    background: white;
    border: none;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}

/* 🌟 Statistics Cards */
.stat-card {
    border: 1px solid #f1ce07;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    min-height: 200px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-3px);
}
.stat-card h6 {
    font-weight: bold;
    color: #381302;
}
.stat-card hr {
    border-top: 2px solid #f8f9fa;
    margin: 10px 0;
}
.stat-card span {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
}

/* 🌟 Tables */
.table-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.table th {
    background: #f8f9fa;
    font-weight: bold;
}
.table tbody tr:hover {
    background-color: #f1f1f1;
}
.table td {
    text-align: center;
}

/* 🌟 Buttons */
button {
    transition: 0.3s ease-in-out;
}
button:hover {
    opacity: 0.8;
}

/* 🌟 Footer */
footer {
    background: #381302;
    color: black;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}
footer a {
    color: #f1ce07;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* 🌟 Mobile Responsive */
@media (max-width: 768px) {
    .green-box {
        max-width: 100%;
        text-align: center;
    }
    .stat-card {
        min-height: 160px;
    }
    .table-container {
        padding: 10px;
    }
}

