body {
    background: #f8f9fa;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.navbar {
    background: linear-gradient(90deg, #278d27 60%, #f97d09 100%);
    border-bottom: 3px solid #f97d09;
}
.navbar .navbar-brand {
    color: #fff !important;
    font-weight: bold;
    letter-spacing: 1px;
}
.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 10px;
    transition: color 0.2s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
    color: #f97d09 !important;
}

.container, .formcontainer {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(39,141,39,0.08), 0 1.5px 6px rgba(249,125,9,0.08);
    padding: 30px 30px 20px 30px;
}

.formcontainer {
    max-width: 1000px;
}

.card {
    border-radius: 14px;
    border: none;
    box-shadow: 0 2px 12px rgba(39,141,39,0.07), 0 1.5px 6px rgba(249,125,9,0.07);
    margin-bottom: 20px;
}
.card-header {
    border-radius: 14px 14px 0 0 !important;
    font-weight: 600;
    font-size: 1.1rem;
}
.bg-primary, .btn-primary {
    background: #278d27 !important;
    border-color: #278d27 !important;
}
.bg-info, .btn-info {
    background: #f97d09 !important;
    border-color: #f97d09 !important;
    color: #fff !important;
}
.bg-success {
    background: #278d27 !important;
    border-color: #278d27 !important;
}
.btn-primary, .btn-info {
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}
.btn-primary:hover, .btn-info:hover {
    background: #f97d09 !important;
    color: #fff !important;
    border-color: #f97d09 !important;
}
.btn-outline-primary {
    color: #278d27;
    border-color: #278d27;
    background: #fff;
    border-radius: 8px;
    font-weight: 500;
}
.btn-outline-primary:hover {
    background: #278d27;
    color: #fff;
}
.btn-outline-info {
    color: #f97d09;
    border-color: #f97d09;
    background: #fff;
    border-radius: 8px;
    font-weight: 500;
}
.btn-outline-info:hover {
    background: #f97d09;
    color: #fff;
}
.table th {
    background: #278d27;
    color: #fff;
    border: none;
}
.table td, .table th {
    /*border-radius: 6px;*/
    vertical-align: middle;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background: #f6fdf6;
}
.alert-success {
    background: #eafbe6;
    color: #278d27;
    border-color: #278d27;
}
.alert-info {
    background: #fff4e6;
    color: #f97d09;
    border-color: #f97d09;
}
.alert-danger {
    background: #fff0f0;
    color: #d32f2f;
    border-color: #d32f2f;
}
.form-label {
    font-weight: 500;
    color: #278d27;
}
input:focus, select:focus, textarea:focus {
    border-color: #f97d09 !important;
    box-shadow: 0 0 0 0.2rem rgba(249,125,9,0.15) !important;
}
.starspan {
    color: #f97d09;
}
::-webkit-scrollbar-thumb {
    background: #278d27;
}
::-webkit-scrollbar-track {
    background: #f6fdf6;
}