/* /an/assets/style.css
   Theme: Amber Gold (#FFBF00) + Onyx (#111111)
   Responsive layout for Kafeunsoed / an pages
   Version: 2.0 - Clean & Organized
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
  /* Primary Colors */
  --amber: #FFBF00;
  --amber-600: #e6ae00;
  --onyx: #111111;
  
  /* Neutral Colors */
  --bg: #f6f7f9;
  --surface: #ffffff;
  --muted: #6b6b6b;
  --text-color: #333333;
  --light-text: #777777;
  --white: #ffffff;
  
  /* Border & Shadow */
  --border: rgba(17,17,17,0.06);
  --border-color: #e5e5e5;
  --shadow-sm: 0 4px 12px rgba(17,17,17,0.06);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 34px rgba(17,17,17,0.12);
  
  /* Layout */
  --max-width: 1200px;
  --radius: 12px;
  --gutter: 16px;
  --header-height: 70px;
  
  /* Additional Variables */
  --primary-color: #3a6ea5;
  --secondary-color: #ffcc00;
  --background-color: #f8f9fa;
  --transition: all 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--onyx);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  padding-top: var(--header-height);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

.text-extra-small {
    font-size: 0.75rem; /* Ganti 0.75rem sesuai ukuran yang Anda inginkan */
}

/* ==========================================================================
   LAYOUT & GRID
   ========================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.app-body {
  max-width: var(--max-width);
  margin: 20px auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 260px 1fr 320px;
  gap: 20px;
  align-items: start;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--onyx);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.logo-icon:hover {
  color: #FFBF00;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-primary {
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.logo-secondary {
  font-size: 10px;
  color: var(--light-text);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Primary Navigation */
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-item-group {
  display: flex;
  gap: 8px;
  background: rgba(58, 110, 165, 0.05);
  border-radius: 12px;
  padding: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--light-text);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--text-color);
  background: rgba(58, 110, 165, 0.1);
}

.nav-item.active {
  color: var(--text-color);
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-item i {
  font-size: 16px;
}

.nav-badge {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.nav-item.active .nav-indicator {
  opacity: 1;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: rgba(58, 110, 165, 0.05);
  color: #FFBF00;
}

/* Search Bar */
.search-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1001;
}

.search-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-text);
}

.search-input {
  width: 100%;
  padding: 12px 48px 12px 48px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  background: var(--background-color);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
}

.search-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--light-text);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   DROPDOWNS
   ========================================================================== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1002;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Notification Dropdown */
.notification-header {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.mark-all-read {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.notification-list {
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.notification-item:hover {
  background: var(--background-color);
}

.notification-item.unread {
  background: rgba(255, 204, 0, 0.05);
}

.notification-avatar {
  flex-shrink: 0;
}

.notification-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-content {
  flex: 1;
}

.notification-content p {
  margin: 0 0 4px 0;
  font-size: 14px;
  line-height: 1.4;
}

.notification-time {
  font-size: 12px;
  color: var(--light-text);
}

.notification-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: flex-start;
}

.notification-footer {
  padding: 12px 16px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.view-all {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* User Dropdown */
.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.user-profile:hover {
  background: rgba(58, 110, 165, 0.05);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.user-profile i {
  font-size: 12px;
  color: var(--light-text);
  transition: var(--transition);
}

.dropdown.active .user-profile i {
  transform: rotate(180deg);
}

.user-menu {
  width: 280px;
  padding: 0;
}

.user-info {
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.user-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
}

.user-details p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: var(--light-text);
}

.user-points {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-color);
}

.menu-divider {
  height: 1px;
  background: var(--border-color);
  margin: 8px 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.menu-item:hover {
  background: var(--background-color);
}

.menu-item i {
  width: 20px;
  text-align: center;
  color: var(--light-text);
}

.menu-item.logout {
  color: #e74c3c;
}

.menu-item.logout i {
  color: #e74c3c;
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info-mobile h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
}

.user-info-mobile p {
  margin: 0;
  font-size: 14px;
  color: var(--light-text);
}

.close-mobile-nav {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--light-text);
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-menu {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
}

.mobile-nav-item:hover {
  background: var(--background-color);
}

.mobile-nav-item.active {
  background: rgba(255, 204, 0, 0.1);
  color: var(--primary-color);
}

.mobile-nav-item i {
  width: 20px;
  text-align: center;
  color: var(--light-text);
}

.mobile-nav-item.active i {
  color: var(--primary-color);
}

.mobile-badge {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border-color);
  margin: 16px 20px;
}

/* ==========================================================================
   SIDEBARS
   ========================================================================== */
/* Left Sidebar */
.left-sidebar {
  background: var(--onyx);
  border-radius: var(--radius);
  color: #ffffff;
  padding: 12px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  grid-column: 1;
}

.left-sidebar .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 12px;
}

.left-sidebar .card:last-child {
  margin-bottom: 0;
}

/* Profile Section */
.left-sidebar .profile-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 12px auto;
  border: 3px solid rgba(255,255,255,0.06);
}

.left-sidebar .profile-name {
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-top: 8px;
  font-size: 16px;
}

.left-sidebar .text-avatar {
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
}

.left-sidebar .user-points {
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.left-sidebar .btn-primary {
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-top: 12px;
}

/* Sidebar Links */
.left-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: var(--transition);
}

.left-sidebar .sidebar-link i {
  color: rgba(255,255,255,0.85);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.left-sidebar .sidebar-link:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

/* White Background Section */
.left-sidebar .white-background-section {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
}

.left-sidebar .white-background-section .card-header {
  color: var(--onyx) !important;
  background: var(--surface) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 13px;
}

.left-sidebar .white-background-section .card-body {
  color: var(--onyx) !important;
  background: var(--surface) !important;
  padding: 14px;
}

.left-sidebar .additional-info {
  padding: 16px;
  background: rgba(58, 110, 165, 0.05);
  margin: 0;
  border-radius: 8px;
}

.left-sidebar .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--onyx);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  transition: var(--transition);
}

.left-sidebar .info-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.left-sidebar .info-item:hover {
  color: var(--amber);
  cursor: pointer;
}

.left-sidebar .info-item i {
  color: var(--amber);
  margin-right: 12px;
  font-size: 16px;
}

.left-sidebar .tips-box {
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 191, 0, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--amber);
}

.left-sidebar .tips-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--onyx);
  margin-bottom: 4px;
}

.left-sidebar .tips-content {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* My Connections Section */
.card-connections-link {
  display: block;
  padding: 5px 2px;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  transition: var(--transition);
  text-align: center;
}

.card-connections-link:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: -25px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.connection-item {
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 12px;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.connection-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(100, 100, 100, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: white;
}

.connection-name {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  max-width: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.connection-more-badge {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--amber);
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.4);
  user-select: none;
}

.connection-total-info {
  margin-top: 8px;
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Right Sidebar */
.right-sidebar {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card .card-body {
  padding: 14px;
}

.card .card-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: #e6ae00;
  font-size: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   FORMS & BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  color: var(--onyx);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn:focus {
  outline: 2px solid rgba(0,0,0,0.06);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-600) 100%);
  color: var(--onyx);
  box-shadow: 0 6px 18px rgba(255,191,0,0.12);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Button Variants */
.btn-outline-secondary {
  color: var(--light-text);
  border: 1px solid var(--border-color);
}

.btn-outline-secondary:hover {
  color: var(--text-color);
  background-color: var(--border-color);
}

.btn-warning {
  color: var(--text-color);
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-info {
  color: var(--white);
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-success {
  color: var(--white);
  background-color: #198754;
  border-color: #198754;
}

.btn-danger {
  color: var(--onyx);
  border-color: #dc3545;
}

.btn-secondary {
  color: var(--white);
  background-color: #6c757d;
  border-color: #6c757d;
}

/* Form Controls */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: var(--text-color);
  background-color: var(--white);
  border-color: var(--amber);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 191, 0, 0.25);
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Suggestion Items */
.suggestion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.alumni-info {
  flex: 1;
  min-width: 0;
}

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--onyx);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.fab:active {
  transform: scale(0.95);
}

/* Quick Action Menu */
.quick-action-menu {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  width: 300px;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.quick-action-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.quick-action-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.quick-action-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.close-quick-action {
  background: none;
  border: none;
  color: var(--light-text);
  cursor: pointer;
  padding: 4px;
}

.quick-action-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  color: var(--text-color);
  border-radius: 12px;
  transition: var(--transition);
}

.quick-action-item:hover {
  background: var(--background-color);
}

.action-icon {
  width: 40px;
  height: 40px;
  background: rgba(58, 110, 165, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
}

.action-content h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
}

.action-content p {
  margin: 0;
  font-size: 12px;
  color: var(--light-text);
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--amber);
  color: var(--onyx);
  border-radius: 10px;
}

/* Chat Floating UI */
.chat-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--amber), var(--amber-600));
  color: var(--onyx);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4000;
  box-shadow: 0 14px 40px rgba(17,17,17,0.16);
  transition: transform 160ms, box-shadow 160ms, opacity 160ms;
}

.chat-fab i {
  font-size: 20px;
  color: var(--onyx);
  display: inline-block;
}

.chat-fab:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(17,17,17,0.2);
}

.chat-fab:active {
  transform: translateY(-2px) scale(0.99);
}

.chat-window {
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 340px;
  height: 460px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(17,17,17,0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 3999;
}

.chat-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: linear-gradient(90deg, rgba(255,191,0,0.06), rgba(255,191,0,0));
}

.chat-header .title {
  color: var(--onyx);
  font-weight: 800;
}

.chat-header .close-btn {
  background: transparent;
  border: 0;
  padding: 6px;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  transition: background 120ms, color 120ms;
}

.chat-header .close-btn:hover {
  background: rgba(17,17,17,0.03);
  color: var(--onyx);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  max-width: var(--max-width);
  margin: 20px auto;
  padding: 12px 16px;
  color: var(--muted);
  text-align: center;
}

.text-copyright {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.text-copyright a:hover {
  color: var(--onyx) !important;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.text-copyright a,
.text-copyright strong {
  font-size: 13px;
  font-weight: 500;
}

/* ==========================================================================
   FLASH MESSAGES
   ========================================================================== */
.flash {
  max-width: var(--max-width);
  margin: 12px auto;
  padding: 12px;
  border-radius: 8px;
}

.flash.success {
  background: #fff8e6;
  color: #51430b;
  border: 1px solid rgba(255,191,0,0.15);
}

.flash.error {
  background: #ffecec;
  color: #6b0b0b;
  border: 1px solid rgba(255,0,0,0.06);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
  .app-body {
    grid-template-columns: 1fr 320px;
  }
  
  .left-sidebar {
    display: none;
  }
  
  .primary-nav {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .logo-text {
    display: none;
  }
}

@media (max-width: 780px) {
  .app-body {
    grid-template-columns: 1fr;
  }
  
  .right-sidebar {
    display: none;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }
  
  .header .wrap {
    padding: 0 16px;
  }
  
  .user-name {
    display: none;
  }
  
  .dropdown-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    min-width: auto;
  }
  
  .notification-menu,
  .user-menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quick-action-menu {
    width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
  }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
[role="button"]:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(255,191,0,0.18);
  outline-offset: 2px;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.mt-3 {
  margin-top: 0.75rem;
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.rounded-circle {
  border-radius: 50%;
}

/* ==========================================================================
   FEED SECTION
   ========================================================================== */
.feed-section {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Post Card */
.post-card {
  margin-bottom: 12px;
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Post Header */
.post-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.post-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.post-author-info {
  flex: 1;
}

.post-author-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.post-meta {
  font-size: 13px;
  color: var(--muted);
}

/* Post Content */
.post-content {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.post-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.post-image:hover {
  opacity: 0.95;
}

/* Post Actions */
.post-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.post-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  /* Hapus border di sini */
  border: none; 
  /* Akhir dari perubahan */
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.post-action-btn:hover {
  background: var(--background-color);
}

.post-action-btn.active {
  color: var(--amber);
}

/* Post Stats */
.post-stats {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* Link Preview */
.link-preview {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background-color);
  margin-top: 10px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.link-preview:hover {
  background: rgba(58, 110, 165, 0.05);
}

.link-preview-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.link-preview-url {
  font-size: 13px;
  color: var(--muted);
}

/* Photo Gallery */
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.photo-gallery img {
  width: 100%;
  max-width: 720px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.photo-gallery img:hover {
  transform: scale(1.02);
}

/* Create Post Form */
.create-post-form {
  margin-bottom: 12px;
}

.post-type-selector {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.post-type-selector label {
  font-weight: 600;
  margin-right: 6px;
}

.post-type-selector select {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.post-content-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 8px;
  font-family: inherit;
}

.post-content-textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 0.25rem rgba(255, 191, 0, 0.25);
}

.photo-upload-section,
.link-share-section {
  margin-top: 8px;
}

.photo-upload-section label,
.link-share-section label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.photo-upload-section input[type="file"],
.link-share-section input[type="url"] {
  display: block;
  margin-top: 6px;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.photo-upload-section input[type="file"]:focus,
.link-share-section input[type="url"]:focus {
  outline: none;
  border-color: var(--amber);
}

.post-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.chars-counter {
  color: var(--muted);
  font-size: 13px;
}

/* Article Card */
.article-card {
  margin-bottom: 12px;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.article-title {
  margin: 0 0 8px 0;
  font-size: 1.2em;
}

.article-title a {
  text-decoration: none;
  color: inherit;
}

.article-title a:hover {
  color: var(--amber);
}

.article-image {
  width: 100%;
  max-width: 600px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.article-excerpt {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.article-meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Pagination */
.feed-pagination {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.feed-pagination .btn {
  padding: 6px 12px;
}

/* Delete Button */
.delete-post-btn {
  padding: 2px 6px;
  font-size: 0.8em;
}

/* Loading State */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design for Feed */
@media (max-width: 768px) {
  .post-image {
    max-height: 300px;
  }
  
  .photo-gallery img {
    max-width: 100%;
  }
  
  .post-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Perbaikan untuk mobile navigation */
.mobile-nav-menu {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
}

.mobile-nav-item:hover {
  background: var(--background-color);
}

.mobile-nav-item.active {
  background: rgba(255, 204, 0, 0.1);
  color: var(--primary-color);
}

.mobile-nav-item i {
  width: 20px;
  text-align: center;
  color: var(--light-text);
}

.mobile-nav-item.active i {
  color: var(--primary-color);
}

.mobile-badge {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border-color);
  margin: 16px 20px;
}

/* Perbaikan untuk additional info di mobile nav */
.mobile-nav .additional-info {
  padding: 16px 20px;
  background: rgba(58, 110, 165, 0.05);
  margin: 0 20px;
  border-radius: 8px;
}

.mobile-nav .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--text-color);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  transition: var(--transition);
}

.mobile-nav .info-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.mobile-nav .info-item:hover {
  color: var(--amber);
  cursor: pointer;
}

.mobile-nav .info-item i {
  color: var(--amber);
  margin-right: 12px;
  font-size: 16px;
}

/* Perbaikan untuk mobile nav header */
.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info-mobile h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
}

.user-info-mobile p {
  margin: 0;
  font-size: 14px;
  color: var(--light-text);
}

.close-mobile-nav {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--light-text);
  cursor: pointer;
  padding: 4px;
}

/* Perbaikan untuk mobile nav item active state */
.mobile-nav-item.active {
  background: rgba(255, 204, 0, 0.1);
  color: var(--primary-color);
}

.mobile-nav-item.active i {
  color: var(--primary-color);
}

/* Perbaikan untuk logout item di mobile nav */
.mobile-nav-item.logout {
  color: #e74c3c;
}

.mobile-nav-item.logout i {
  color: #e74c3c;
}

/* Perbaikan untuk mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Perbaikan untuk mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  left: 0;
}

/* CSS Khusus untuk Profil Alumni */
.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr 320px; /* Menyesuaikan dengan layout utama */
    gap: 20px;
    max-width: var(--max-width);
    margin: 20px auto;
    padding: 0 var(--gutter);
}

.profile-layout .profile-sidebar {
    grid-column: 1;
}

.profile-layout .main-content {
    grid-column: 2;
}

.profile-layout .right-sidebar { /* Jika ingin sidebar kanan tetap ada */
    grid-column: 3;
}

.profile-layout .profile-cover {
    height: 120px;
    background: linear-gradient(90deg, var(--amber), var(--amber-600));
    border-radius: 10px 10px 0 0;
}

.profile-layout .card-body.profile-card-content {
    padding-top: 0;
}

.profile-layout .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--surface);
    margin: -50px auto 10px; /* Menyesuaikan posisi avatar di atas cover */
    display: block;
    box-shadow: var(--shadow-lg);
}

.profile-layout .profile-info {
    text-align: center;
    margin-bottom: 15px;
}

.profile-layout .profile-name {
    margin: 0 0 5px 0;
    font-size: 1.4em;
    font-weight: 700;
}

.profile-layout .profile-bio {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    color: var(--muted);
    line-height: 1.4;
}

.profile-layout .profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.profile-layout .profile-actions .btn {
    width: 100%;
    justify-content: center;
}

.profile-layout .profile-details p {
    margin: 8px 0;
    display: flex;
    align-items: center; /* Perbaikan: align-items center */
    gap: 8px;
}

.profile-layout .profile-details p i {
    color: var(--amber);
    flex-shrink: 0;
    font-size: 16px; /* Perbaikan: ukuran ikon konsisten */
}

.profile-layout .profile-details a {
    color: inherit; /* Pewarnaan teks tetap dari parent */
    text-decoration: none; /* Hapus underline default */
}

.profile-layout .profile-details a:hover {
    text-decoration: underline; /* Tambahkan underline saat hover */
}

.profile-layout .connections-grid, .profile-layout .photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom */
    gap: 10px;
    margin-bottom: 10px;
}

.profile-layout .connection-item, .profile-layout .photo-item {
    text-align: center;
    flex-shrink: 0;
}

.profile-layout .connection-item img, .profile-layout .photo-item img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Membuat gambar persegi */
    object-fit: cover;
    border-radius: 8px; /* Untuk foto biasa */
    border: 1px solid var(--border-color);
}

.profile-layout .connection-item img {
    border-radius: 50%; /* Perbaikan: border-radius 50% untuk koneksi */
}

.profile-layout .connection-item div {
    font-size: 0.8em;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-layout .see-all-link {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.profile-layout .see-all-link:hover {
    text-decoration: underline;
}

/* Responsif */
@media (max-width: 1100px) {
    .profile-layout {
        grid-template-columns: 1fr 320px; /* Sidebar kiri hilang */
    }
    .profile-layout .profile-sidebar {
        display: none;
    }
    .profile-layout .main-content {
        grid-column: 1;
    }
    .profile-layout .right-sidebar {
        grid-column: 2;
    }
}

@media (max-width: 780px) {
    .profile-layout {
        grid-template-columns: 1fr; /* Hanya konten utama */
    }
    .profile-layout .profile-sidebar, .profile-layout .right-sidebar {
        display: none;
    }
    .profile-layout .main-content {
        grid-column: 1;
    }
}

/* ==========================================================================
   LOGIN/REGISTER DROPDOWN STYLES
   ========================================================================== */
.login-button {
    position: relative;
}

.login-register-dropdown {
    position: absolute;
    top: 100%;
    right: 0; 
    width: 320px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: var(--radius);
    overflow: hidden;
    display: none;
    margin-top: 8px;
}

.login-register-dropdown.active {
    display: block;
    right: 0;
}

.login-register-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.login-register-form-header h3 {
    margin: 0;
    font-size: 1.1em;
    color: var(--text-color);
}

.close-form-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--muted);
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-form-btn:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}

.login-register-form-body {
    padding: 20px;
}

.login-register-form-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9em;
    color: var(--muted);
}

.login-register-form-footer a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 600;
}

.login-register-form-footer a:hover {
    text-decoration: underline;
}

/* Form controls for login forms */
.login-register-form-body .form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.9rem;
}

.login-register-form-body .form-control:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 0.25rem rgba(255, 191, 0, 0.25);
}

.login-register-form-body .form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--text-color);
}

.login-register-form-body .mb-3 {
    margin-bottom: 1rem !important;
}

.login-register-form-body .form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    background-color: var(--white);
}

.login-register-form-body .form-select:focus {
    outline: none;
    border-color: var(--amber);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR LOGIN DROPDOWN
   ========================================================================== */
@media (max-width: 768px) {
    .login-register-dropdown {
        width: 280px;
        position: absolute;
        top: 100%;
        right: 0; 
    }
    
    .login-register-dropdown::before {
        content: '';
        position: absolute;
        top: -10px;
        right: 0px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid var(--white);
    }
}

@media (max-width: 480px) {
    .login-register-dropdown {
        width: calc(100vw - 40px);
        right: 0;
        margin: 8px auto;
    }
}

/* ==========================================================================
   UTILITY CLASSES FOR FORMS
   ========================================================================== */
.text-extra-small {
    font-size: 0.75rem !important;
}

.w-100 {
    width: 100% !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

/* ==========================================================================
   ADDITIONAL STYLES FOR MOBILE NAVIGATION
   ========================================================================== */
.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info-mobile h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.user-info-mobile p {
    margin: 0;
    font-size: 14px;
    color: var(--light-text);
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--light-text);
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   ADDITIONAL INFO STYLES
   ========================================================================== */
.additional-info {
    padding: 16px 20px;
    background: rgba(58, 110, 165, 0.05);
    margin: 0 20px;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    transition: var(--transition);
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.info-item:hover {
    color: var(--amber);
    cursor: pointer;
}

.info-item i {
    color: var(--amber);
    margin-right: 12px;
    font-size: 16px;
}

/* ==========================================================================
   BADGE ROLE ADMIN
   ========================================================================== */
.user-role-badge {
    font-size: 0.75rem;
    color: #856404; /* Menggunakan warna teks gelap agar kontras dengan kuning */
    background-color: #ffeb3b; /* Kuning yang lebih soft (opsional) */
    
    /* Membuat bentuk pil */
    padding: 4px 12px;     /* Memberikan ruang di dalam (atas-bawah, kiri-kanan) */
    border-radius: 50px;   /* Nilai besar untuk membuat sudut membulat sempurna */
    display: inline-block; /* Memastikan badge mengikuti lebar teks */
    
    /* Properti kamu sebelumnya */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    text-align: center;
}


