/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

/* Header & Navigation Styles */
.index-header {
    background-color: #4CAF50;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.index-header h1 {
    padding: 1rem;
}

.dashboard-header {
    background-color: #4CAF50;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.navigation li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.navigation li a i {
    font-size: 1.1rem;
}

.navigation li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.navigation li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
}

.profile-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-dropdown {
    display: flex;
    flex-direction: column;
    color: white;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.user-email {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #4CAF50;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .navigation.active {
        display: flex;
    }

    .navigation li {
        width: 100%;
    }

    .navigation li a {
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-left: 4px solid transparent;
    }

    .navigation li a:hover,
    .navigation li a.active {
        background-color: rgba(255, 255, 255, 0.1);
        border-left-color: white;
    }

    .user-menu {
        margin-left: auto;
    }

    .user-dropdown {
        display: none;
    }
}

/* Animation Classes */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation.active {
    animation: slideDown 0.3s ease forwards;
}

/* Dashboard Layout */
.dashboard-main {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-main p {
    padding: 0.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.dashboard-main h3 {
    color: black;
    padding: 0.5rem;
    font-size: 1.50rem;
    font-weight: 500;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: slideIn 0.3s ease-out;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Dashboard Cards Base Styles */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dashboard-card h2 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

/* Progress Overview Styles */
.progress-overview {
    text-align: center;
}

.progress-circle {
    width: 150px;
    height: 150px;
    margin: 1rem auto;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 var(--progress), #e5e7eb var(--progress));
}

.progress-circle::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: white;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

/* Modules Grid Styles */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.module-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.module-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.module-item.completed {
    background: #ecfdf5;
    border: 1px solid #10b981;
}

.module-item.in-progress {
    background: #eff6ff;
    border: 1px solid #3b82f6;
}

.module-item.not-started {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.score, .attempts {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.module-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    transition: background-color 0.2s ease;
}

.module-link:hover {
    background: #45a049;
}

/* Recent Activity Styles */
.activity-list {
    list-style: none;
    padding: 0;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background-color: #f9fafb;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.activity-icon i {
    color: #4b5563;
    font-size: 1.25rem;
}

.activity-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-module {
    font-weight: 500;
    color: #1f2937;
}

.activity-score {
    color: #4CAF50;
    font-weight: 500;
}

.activity-date {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Quick Links Styles */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    text-decoration: none;
    color: #1f2937;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.quick-link:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.quick-link i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 0.75rem;
}

.quick-link span {
    font-size: 0.875rem;
    text-align: center;
}

/* No Activity Message */
.no-activity {
    text-align: center;
    color: #6b7280;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-main {
        padding: 1rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .progress-circle {
        width: 120px;
        height: 120px;
    }

    .activity-item {
        padding: 0.75rem;
    }

    .activity-icon {
        width: 32px;
        height: 32px;
    }
}

/* Print Styles */
@media print {
    .dashboard-main {
        padding: 0;
    }

    .dashboard-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .quick-links {
        display: none;
    }
}

/* Base styles */
:root {
  --primary-blue: #3b82f6;
  --primary-green: #4CAF50;
  --primary-hover: #2563eb;
  --danger-red: #ef4444;
  --danger-hover: #dc2626;
  --success-green: #10b981;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
}

/* Container and Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Profile Section */
.profile-page {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.profile-image {
  position: relative;
  width: 12rem;
  height: 12rem;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-details {
  flex: 1;
  min-width: 0;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* File Input Styling */
.file-input-wrapper {
  position: relative;
}

.file-input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.file-input-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--gray-100);
  color: var(--gray-700);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.file-input-button:hover {
  background-color: var(--gray-200);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

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

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

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

.btn-secondary {
  background-color: var(--gray-200);
  color: var(--gray-700);
}

.btn-secondary:hover {
  background-color: var(--gray-300);
}

/* Achievements Section */
.achievements-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.achievement-card {
  background: linear-gradient(135deg, #f0f7ff 0%, #f5f3ff 100%);
  border: 1px solid #e0e7ff;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: transform 0.2s;
}

.achievement-card:hover {
  transform: translateY(-2px);
}

/* Progress Section */
.progress-container {
  background-color: var(--gray-100);
  border-radius: 9999px;
  height: 0.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.alert-success {
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.alert-error {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-page {
    padding: 1rem;
  }

  .profile-image {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-out;
}

/* Utility Classes */
.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-4 {
  gap: 1rem;
}

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

.font-medium {
  font-weight: 500;
}

.text-sm {
  font-size: 0.875rem;
}

.text-gray {
  color: var(--gray-600);
}

/* Forms */
form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}

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

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


label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

button, input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #45a049;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f5f5f5;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.text-content {
    flex: 1;
}

.text-content p {
    margin-bottom: 1.5em; /* Add space between paragraphs */
    line-height: 1.6; /* Improve readability */
}

.text-content p:last-child {
    margin-bottom: 0; /* Remove margin from last paragraph */
}

/* Image Handling */
.image-container {
    width: 40%; /* Limit the image container size */
    flex-shrink: 0; /* Prevent the image from shrinking */
    position: sticky; /* Optional: Make image stick while scrolling */
    top: 20px; /* Optional: Distance from top when sticky */
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox.active {
    display: flex;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .image-container {
        width: 100%;
        margin-top: 20px;
        position: static; /* Remove sticky positioning on mobile */
    }
}

/* Login Page */
h1 {
  text-align: center;
}

/* Forgot Password Specific Styles */
.forgot-password-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
}

.forgot-password-container h1 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.message-container {
    margin-bottom: 1.5rem;
}

.message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease-in;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

button[type="submit"] {
    width: 100%;
    padding: 0.875rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.form-links {
    margin-top: 1.5rem;
    text-align: center;
}

.form-links a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-links a:hover {
    color: #45a049;
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .forgot-password-container {
        margin: 1rem;
        padding: 1rem;
    }
}

/* Profile Page Specific Styles */
#profile-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.profile-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-image {
    flex-shrink: 0;
    position: relative;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.profile-details {
    flex: 1;
}

.profile-details h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.5rem;
}

.profile-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

/* Achievements Styles */
.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

.achievement-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.achievement-item:hover {
    transform: translateY(-2px);
}

/* In Progress Courses Styles */
.course-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

.course-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.course-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        margin-bottom: 1.5rem;
    }

    .achievements-list,
    .course-list {
        grid-template-columns: 1fr;
    }
}

/* Form Preview Image */
.image-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 1rem auto;
    display: none;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.image-preview.active {
    display: block;
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #4CAF50;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navigation.active {
        display: flex;
    }

    .navigation li {
        width: 100%;
        text-align: center;
    }

    .navigation li a {
        padding: 15px;
    }

    main {
        padding: 15px;
        margin: 10px;
        width: auto;
    }

    .container {
        width: 95%;
        padding: 10px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* Status Messages */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}
