body {
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 50vh;
    font-family: 'Segoe UI', sans-serif;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #00aaff;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 60px;
    transition: transform 0.3s ease;
    z-index: 999;
}

.sidebar.hide {
    transform: translateX(-100%);
}

.sidebar a {
    color: white;
    padding: 15px 20px;
    display: block;
    text-decoration: none;
}

.sidebar a:hover {
    background-color: #007acc;
}

/* Topbar */
.topbar {
    height: 60px;
    background-color: #00aaff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.topbar img.logo {
    height: 40px;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main content */
.main {
    margin-top: 60px;
    margin-left: 250px;
    padding: 20px;
    transition: margin-left 0.3s;
}

.main.full {
    margin-left: 0;
}

.card-menu {
    flex: 1 1 15%;
    text-align: center;
    padding: 15px;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.card-menu:hover {
    transform: translateY(-5px);
}

.table th {
    background-color: #00aaff;
    color: white;
}

.profile-section {
    display: flex;
    align-items: center;
    padding: 10px;
}

.profile-section .avatar {
    width: 45px;
    height: 50px;
    border-radius: 50%;
}

.menu {
    padding: 10px;
}

.menu-title {
    padding: 10px;
    font-weight: bold;
    margin-bottom: 15px;
}

.menu a {
    display: flex;
    font-weight: 400;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: #ffffff;
}

.menu a .icon {
    padding: 10px;
    width: 35px;
    height: 35px;
    background-color: #00bfff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.dropdown-fixed {
  display: none;
  justify-content: flex-end;
  position: fixed;
  top: 60px;
  right: 0;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 140px;
  padding: 8px 0;
}
  
.dropdown-fixed a {
    text-decoration: none; /* Hapus garis bawah */
    color: #333;
    padding: 10px 16px;
    display: flex;
    align-items: center; /* Tengah vertikal */
    gap: 8px;
    font-weight: 500;
    transition: background 0.2s;
}
  
.dropdown-fixed a:hover {
    background-color: #f0f0f0;
}

  .profile-container {
    text-align: center;
    padding: 20px 10px;
  }
  
  .profile-photo-wrapper {
    position: relative;
    align-items: center;
    text-align: center;
    align-content: center;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  .upload-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #03a9f4;
    color: white;
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  .form-container {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
  }
  
  