body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #333;
}



.content {
   
    /* padding: 80px !important; */
    transition: margin-left 0.3s;
}

.section {
    margin-bottom: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.section h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #007bff;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section h2 i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.section button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.section button i {
    margin-right: 8px;
}

.section button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
  }

  .form-group {
    margin-bottom: 20px;
    position: relative;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
  }

  .form-group input {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .form-group input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  }

  .login-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .login-button:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .login-container p {
    text-align: center;
    margin-top: 15px;
    color: #fff;
  }

  .login-container p a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  .login-container p a:hover {
    text-decoration: underline;
  }
  .alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}


/* Footer */
.footer {
    background-color: #1c1e21;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }

    .sidebar a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .content {
        margin-left: 200px;
        padding: 20px;
    }

    .section {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .sidebar a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .content {
        margin-left: 0;
        padding: 15px;
    }

    .section {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.8rem;
    }
}

.header h1 {
    margin: 0;
    font-size: 1.5rem !important;
    font-weight: 600;
}

.user-info {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 300;
}

.user-info h3 {
    margin: 5px 0;
    font-size: 1.5rem;
    font-weight: 400;
}

.user-info h4 {
    margin: 5px 0;
    font-size: 1.2rem;
    font-weight: 300;
    color: #e0e0e0;
}

/* Dropdown submenu styles */
.submenu {
    display: none;
    padding-left: 20px;
}

.submenu.show {
    display: block;
}

.sidebar .dropdown-toggle {
    cursor: pointer;
}

.sidebar .dropdown-toggle:after {
    /* content: '\f0d7'; FontAwesome arrow-down icon */
    font-family: 'FontAwesome';
    /* padding-left: 10px; */
}

.sidebar .dropdown-toggle.open:after {
    content: '\f0de'; /* FontAwesome arrow-up icon */
}

/* Additional styles for menu items */
.sidebar .dropdown {
    margin-bottom: 10px;
}

.sidebar .dropdown a {
    padding-left: 15px;
}

/* Hide dropdowns initially */
.submenu {
    display: none;
}

/* Hover effects for menu items */
.sidebar a:hover {
    background-color: #d0e4f9;
    padding-left: 25px;
}
