/* General Styles */
body {
    font-family: 'Spartan', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Header Section */
  .user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-bottom: 1px solid #D8DAE0;
  }
  
  .header-logo {
    max-height: 50px;
  }
  
  /* .right-header {
    display: flex;
    align-items: center;
    gap: 15px;
  } */
  
  .profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .text-info {
    display: flex;
    flex-direction: column;
  }
  
  .user-name {
    font-weight: bold;
  }
  
  .logout-button {
    color: #007bff;
    text-decoration: none;
  }
  
  /* Page Title */
  .page-title {
    text-align: center;
    background-color: #2F3382;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
  }

  
  /* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
  }
  
  .logout-button {
    text-decoration: none;
    color: #0368FF;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #0368FF;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .logout-button:hover {
    background-color: #0368FF;
    color: white;
  }

  @media (max-width: 768px) and (min-width: 375px) {
    .user-header { flex-direction: column; align-items: flex-end; }
    .profile-icon { width: 30px; height: 30px; }
    .page-title { font-size: 20px; }
    .buatcv-banner { padding: 15px; } 
     .box { width: 100px; }
  }  
  /* Right Header Styling */
.right-header {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  
  .profile-area {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f5f5f5; /* Light background for hover effect */
    border-radius: 8px;
  }
  
  .profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .text-info {
    margin-left: 10px;
  }
  
  .user-name, .user-email {
    display: block;
    font-family: 'Spartan', sans-serif;
    font-size: 14px;
    color: #333; /* Neutral text color */
  }
  
  /* Dropdown Menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 10;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Spartan', sans-serif;
    font-size: 14px;
    color: black;
    background-color: white;
    border-bottom: 1px solid #f0f0f0; /* Separator */
  }
  
  .dropdown-menu a.logout-button {
    background-color: #ff4d4d; /* Red logout button */
    color: white;
    text-align: center;
    font-weight: bold;
  }
  
  .dropdown-menu a.logout-button:hover {
    background-color: #e63939; /* Darker shade on hover */
  }
  
  .dropdown-menu a:hover {
    background-color: #f0f0f0; /* Light hover effect for other items */
  }
  
  .dropdown-menu.active {
    display: block;
  }

  .container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.box {
    max-width: 797px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.link {
    display: block;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.line {
    border-bottom: 1px solid #595959;
    margin-bottom: 20px;
}

.link:hover {
    color: #2F3382;
}
