/* style.css */
.navbar {
  padding: 0.7rem 1rem;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-top: 8px;
  padding: 0.5rem;
}

.navbar .dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
}

.navbar .badge {
  font-size: 0.65rem;
  padding: 0.25rem 0.4rem;
}
/* File: style.css */
.sidebar {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 100;
}

.sidebar .nav-link {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    color: #495057;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.sidebar .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.05);
    border-left-color: #0d6efd;
}

.sidebar .nav-link.active {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-left-color: #0d6efd;
    font-weight: 600;
}

.sidebar .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
    font-weight: 500;
}

.sidebar .nav-link.active .badge {
    background-color: #0d6efd !important;
    color: white !important;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -100%;
        width: 280px;
    }
    
    .sidebar.show {
        left: 0;
        box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
    }
}
/* File: style.css */
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
    left: 25px;
    margin-left: -1.5px;
}

.timeline > .timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline > .timeline-item:after {
    content: "";
    display: table;
    clear: both;
}

.timeline-badge {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2em;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 100;
}

.timeline-panel {
    position: relative;
    width: calc(100% - 60px);
    float: right;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.timeline-heading {
    margin-bottom: 10px;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
    font-weight: 500;
}
/* File: style.css */
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
    left: 25px;
    margin-left: -1.5px;
}

.timeline > .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline > .timeline-item:after {
    content: "";
    display: table;
    clear: both;
}

.timeline-badge {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2em;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-panel {
    position: relative;
    width: calc(100% - 60px);
    float: right;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.timeline-heading {
    margin-bottom: 10px;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
    font-weight: 500;
}
/* Navbar dan Sidebar Umum */
.navbar {
  padding: 0.7rem 1rem;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-top: 8px;
  padding: 0.5rem;
}

.navbar .dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
}

.navbar .badge {
  font-size: 0.65rem;
  padding: 0.25rem 0.4rem;
}

/* Sidebar khusus */
.sidebar {
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  transition: all 0.3s;
  z-index: 100;
}

.sidebar .nav-link {
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  color: #495057;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.sidebar .nav-link:hover {
  background-color: rgba(13, 110, 253, 0.05);
  border-left-color: #0d6efd;
}

.sidebar .nav-link.active {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-left-color: #0d6efd;
  font-weight: 600;
}

.sidebar .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.4rem;
  font-weight: 500;
}

.sidebar .nav-link.active .badge {
  background-color: #0d6efd !important;
  color: white !important;
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: -100%;
    width: 280px;
  }
  
  .sidebar.show {
    left: 0;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
  }
}

/* Indikator status */
.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.status-pending { background-color: #ffc107; }
.status-approved { background-color: #198754; }
.status-rejected { background-color: #dc3545; }
/* Progress bar password strength */
.password-strength-meter {
    height: 5px;
    margin-top: 5px;
    border-radius: 3px;
    background: #e9ecef;
}

.password-strength-meter .strength-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.strength-weak {
    background: #dc3545;
    width: 25%;
}

.strength-fair {
    background: #ffc107;
    width: 50%;
}

.strength-good {
    background: #17a2b8;
    width: 75%;
}

.strength-strong {
    background: #28a745;
    width: 100%;
}

/* Modal khusus */
.modal-success-header {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

/* Notifikasi toast */
.toast-password {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1060;
}
/* Admin specific styles */
.admin-navbar {
    background: linear-gradient(135deg, #0d6efd 0%, #084298 100%);
    border-bottom: 3px solid #ffc107;
}

.password-strength-meter {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

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

/* Badge notification pulsing */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.bg-danger {
    animation: pulse 2s infinite;
}

/* Dropdown admin */
.dropdown-menu-admin {
    border: 1px solid rgba(0,0,0,.15);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}

/* Online indicator */
.online-indicator {
    width: 10px;
    height: 10px;
    background: #28a745;
    border: 2px solid #fff;
}