body {
  background-color: #f8f9fa;
  font-family: Candara, sans-serif;
}
.card {
  border-radius: 1rem;
}
.toggle-password {
  cursor: pointer;
  color: #0d6efd;
  font-size: 0.9rem;
}
.card-icon {
  font-size: 2rem;
}
.sidebar {
  background-color: #343a40;
  color: white;
  min-height: 100vh;
  transition: transform 0.3s ease;
}
.sidebar a {
  color: #ccc;
  text-decoration: none;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.sidebar a:hover,
.sidebar .active {
  background-color: #0d6efd;
  color: #fff;
}
.sidebar .nav-title {
  font-size: 0.9rem;
  margin: 10px 0 0 12px;
  color: #aaa;
}
.sidebar .profile {
  text-align: center;
  padding: 1rem 0;
}
.sidebar .profile img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.sidebar .profile h6,
.sidebar .profile span {
  font-size: 0.9rem;
  margin: 0;
  color: #fff;
}
.toggle-btn {
  display: none;
}
.form-box { 
    max-width: 600px; 
    margin: auto; 
    padding: 2rem; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 0 15px rgba(0,0,0,0.1); 
}
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    transform: translateX(-100%);
    z-index: 1050;
  }
  .sidebar.active {
    transform: translateX(0);
  }
  .toggle-btn {
    display: inline-block;
    background: none;
    border: none;
    color: #0d6efd;
    font-size: 1.5rem;
  }
  .marquee-text {
    display: none !important;
  }
}
.marquee-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: #555;
  font-size: 0.85rem;
}
.role-section {
  background: #f9f9f9;
  padding: 1rem;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  margin-top: 1rem;
}
.upload-section {
  border: 2px dashed #0d6efd;
  border-radius: 15px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}
.upload-section.dragover {
  background-color: #eaf1ff;
}
.upload-preview {
  max-height: 600px;
  overflow-y: auto;
}
.file-box {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.file-thumb {
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 5px;
}
.remove-btn {
  color: red;
  cursor: pointer;
  font-size: 0.9rem;
}
.progress {
  height: 4px;
  margin-top: 5px;
}