/* Base Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E1c71B;
    box-shadow: #E1c71B;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}


.btn {
    display: inline-block;
    background-color: #E1c71B;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: black;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.alert-danger {
    background-color: #fdecea;
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-success {
    background-color: #e8f5e9;
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.login-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.login-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: #E1C71B;
    color: black;
    padding: 2rem 1rem;
    font-weight: bolder;
    font-size: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 2rem;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.profile h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.profile p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

nav ul {
    list-style: none;
}

nav ul li {
    margin-bottom: 0.5rem;
}

nav ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover,
nav ul li.active a {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-content {
    flex: 1;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.notification {
    position: relative;
    cursor: pointer;
}

.notification img {
    width: 24px;
    height: 24px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.recent-activity {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.status-card {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.status-pending {
    background-color: #fff3e0;
    border-left: 4px solid var(--warning-color);
    color: var(--warning-color);
}

/* Admin Specific Styles */
.admin-actions {
    display: flex;
    gap: 1rem;
}

.btn-export {
    background-color: #E1c71B;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-export:hover {
    background-color: black;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
    font-weight: 600;
}

.btn-view {
    color: #E1c71B;
    text-decoration: none;
    font-weight: bolder;
}

.btn-view:hover {
    text-decoration: underline;
}

.btn-save {
    background-color: #E1c71B;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-save:hover {
    background-color: #27ae60;
}










/* Filter Card */
.filter-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.btn-filter {
    background-color: #E1c71B;
    color: black;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bolder;
}
.btn-filter:hover {
    background-color: black;
    color: white;
    font-weight: bolder;
}

.btn-clear {
    background-color: #E1c71B;
    color: black;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bolder;
}
.btn-clear:hover {
    background-color: black;
    color: white;
    font-weight: bolder;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 50%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination a {
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 0.25rem;
    border-radius: 4px;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination a:hover:not(.active, .disabled) {
    background-color: #f1f1f1;
}

.pagination a.disabled {
    color: #ccc;
    pointer-events: none;
}

.text-center {
    text-align: center;
}





/* login.css */
.login-container {
    max-width: 450px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header .logo {
    width: 100px;
    margin-bottom: 15px;
}

.login-form {
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #E1c71B;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: black;
}

.toggle-password {
    color: #3498db;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

.login-footer {
    text-align: center;
    font-size: 14px;
}

.login-footer a {
    color: #3498db;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}



/* Profile Section Styles */
.profile-section {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.profile-picture {
    margin-right: 2rem;
    text-align: center;
}

.profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
}

.btn-change-picture {
    margin-top: 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.profile-details h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.profile-form {
    max-width: 600px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-save {
    background: #E1c71B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-change-password {
    background: #E1c71B;
    color: #2c3e50;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

/* ADMIN CSS - Staili za Panel ya Admin */

/* Msingi */
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --success-color: #2ecc71;
  --danger-color: #e74c3c;
  --warning-color: #f39c12;
  --light-color: #ecf0f1;
  --dark-color: #34495e;
  --sidebar-width: 250px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Mpangilio wa Panel */
.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: var(--sidebar-width);
  background-color: var(--secondary-color);
  color: white;
  position: fixed;
  height: 100vh;
  padding: 20px 0;
  transition: all 0.3s;
  z-index: 1000;
}

.admin-brand {
  text-align: center;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid var(--primary-color);
}

.admin-brand h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.admin-brand p {
  font-size: 0.8rem;
  color: #bdc3c7;
}

.admin-menu {
  margin-top: 20px;
}

.admin-menu ul {
  list-style: none;
}

.admin-menu li a {
  display: block;
  padding: 12px 20px;
  color: #ecf0f1;
  transition: all 0.3s;
}

.admin-menu li a:hover,
.admin-menu li.active a {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--primary-color);
}

.admin-menu li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Main Content */
.admin-main {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.admin-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.admin-user {
  display: flex;
  align-items: center;
}

.admin-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.admin-user-info small {
  color: #7f8c8d;
  font-size: 0.8rem;
}

/* Kadi */
.admin-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.card-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.card-body {
  padding: 20px;
}

/* Meza */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.admin-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--secondary-color);
}

.admin-table tr:hover {
  background-color: #f8f9fa;
}

/* Fomu */
.admin-form .form-group {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="date"],
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Vifungo */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.btn-success {
  background-color: var(--success-color);
  color: white;
}

.btn-success:hover {
  background-color: #27ae60;
}

.btn-danger {
  background-color: var(--danger-color);
  color: white;
}

.btn-danger:hover {
  background-color: #c0392b;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 0.8rem;
}

/* Alerts */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid var(--success-color);
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid var(--danger-color);
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid var(--primary-color);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

.badge-success {
  background-color: var(--success-color);
  color: white;
}

.badge-warning {
  background-color: var(--warning-color);
  color: white;
}

.badge-danger {
  background-color: var(--danger-color);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .admin-sidebar {
    width: 0;
    overflow: hidden;
  }
  
  .admin-sidebar.active {
    width: var(--sidebar-width);
  }
  
  .admin-main {
    margin-left: 0;
  }
  
  .admin-toggle {
    display: block !important;
  }
}

.admin-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 15px;
}

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col {
  flex: 1;
  padding: 0 10px;
  min-width: 300px;
}

/* Stats Cards */
.stats-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stats-card h3 {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.stats-card p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Tab */
.tab-container {
  margin-bottom: 20px;
}

.tab-header {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tab-link {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.tab-link.active {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.tab-content {
  display: none;
  padding: 20px 0;
}

.tab-content.active {
  display: block;
}




/* Ongeza hii ikiwa unatumia Font Awesome */
.icon {
    margin-right: 8px;
}




/* Ongeza animations kwa transitions */
.admin-menu li a {
    transition: all 0.3s ease;
}

.btn {
    transition: all 0.2s ease;
}



/* Ongeza dark mode ikiwa unahitaji */
.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.dark-mode .admin-card {
    background-color: #2d2d2d;
    color: #f0f0f0;
}










/* Application Details Page Styles */
.application-details {
    display: grid;
    gap: 1.5rem;
}

.detail-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.detail-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-label {
    display: block;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.detail-value {
    display: block;
    padding: 0.5rem;
    background-color: var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background-color: #FFF3CD;
    color: #856404;
}

.status-approved {
    background-color: #D4EDDA;
    color: #155724;
}

.status-rejected {
    background-color: #F8D7DA;
    color: #721C24;
}

.application-actions {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 1.5rem;
}

.application-actions .form-group {
    margin-bottom: 1.5rem;
}

.application-actions label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.application-actions select,
.application-actions textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.application-actions textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-save {
    background-color: #E1c71B;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-save:hover {
    background-color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .application-actions {
        padding: 1rem;
    }
}











/* Change Password Page Styles */
.change-password-header {
    margin-bottom: 2rem;
}

.change-password-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.change-password-form .form-group {
    margin-bottom: 1.5rem;
}

.change-password-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.change-password-form input[type="password"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.change-password-form input[type="password"]:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(72, 149, 239, 0.2);
}

.change-password-form .form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-save {
    background-color: #E1c71B;
    color: rgb(0, 0, 0);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-save:hover {
    background-color: black;
    color: white;
}

.btn-cancel {
    background-color: var(--light-gray);
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cancel:hover {
    background-color: #e2e6ea;
}

.password-strength {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.strength-bar {
    width: 100%;
    height: 5px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.strength-bar-inner {
    height: 100%;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .change-password-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-save,
    .btn-cancel {
        width: 100%;
        justify-content: center;
    }
}



.filter-group input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.filter-group input[type="text"]:focus {
    border-color: #1565c0;
    outline: none;
    box-shadow: 0 0 5px rgba(21, 101, 192, 0.3);
}









.btn-edit {
    background: #007bff;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-delete {
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 5px;
}












nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    background-color: #E1c71B;
    font-weight: bolder;
}

nav ul li a:hover {
    background-color: #444;
}

/* Dropdown styles */
nav ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    min-width: 180px;
    z-index: 1000;
}

nav ul li .submenu li a {
    background-color: #444;
    padding: 10px;
}

nav ul li:hover .submenu {
    display: block;
}













/* Badge styles */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-danger {
    background-color: var(--danger-color);
    color: white;
}

/* Button variants */
.btn-warning {
    background-color: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background-color: #e67e22;
}

/* Search form */
.search-form {
    display: flex;
}

.search-form input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}




.kenosis-footer {
  background: linear-gradient(45deg, #1d1d1d, #2e2e2e);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  border-top: 3px solid #00c896;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  bottom: 0;
  width: 100%;
}

.kenosis-footer strong {
  color: #00ffcc;
  font-weight: 600;
}







