
  /* ==== AUTH PANEL ==== */
  .auth-slide-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    background-color: #EFEFEF;
    color: white;
    padding: 2rem 1.5rem;
    box-shadow: -6px 0 12px rgba(0, 0, 0, 0.5);
    border-left: 1px solid #2c2c2c;
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  
  .auth-slide-panel.open {
    transform: translateX(0);
  }
  
  .auth-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  
  .auth-tab {
    background: none;
    border: none;
    color: black;
    padding: 0.5rem 0;
    font-size: 1rem;
    cursor: pointer;
    flex: 1;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .auth-tab.active {
    color: #009ef7;
    border-color: #009ef7;
  }
  
  .auth-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .auth-form {
    display: none;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.4s ease;
  }
  
  .auth-form.active {
    display: flex;
  }
  
  .auth-form label {
    font-size: 0.95rem;
    color: #0375b8;
    font-weight: 500;
  }
  
  .auth-form input {
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #a6f1fb;
    color: black;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .auth-form input:focus {
    border-color: #009ef7;
    box-shadow: 0 0 0 2px rgba(244, 167, 66, 0.3);
  }
  
  .auth-form input::placeholder {
    color: rgb(134, 114, 114);
  }
  
  .auth-form input[type="file"] {
    padding-left: 0;
    background: none;
    border: none;
    color: black;
  }
  
  /* Buton */
  .auth-submit {
    margin-top: 0.5rem;
    background-color: #009ef7;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .auth-submit:hover {
    background-color: #0375b8;
  }
  
  .close-auth {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    color: #009ef7;
    cursor: pointer;
    z-index: 9999;
  }
  

/* ==== AUTH EXTRA LINKS ==== */
.auth-extra-links {
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.auth-extra-links a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #009ef7;
  font-size: 1.2rem;
  transition: all 0.5s ease;
}

.auth-extra-links a:hover {
  color: #06c254;
  transform: translateX(20px);
}

.auth-link-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.auth-extra-links a:hover .auth-link-icon {
  transform: scale(1.1);
}

.auth-verify-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #009ef7;
  cursor: pointer;
}

#back-to-auth-tabs {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

#back-to-auth-tabs:hover {
  color: #18b909;
}



/* ==== AUTH PANEL ==== */

/* ==== NOTIFICATION ==== */
.notification {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  z-index: 10000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.notification.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.notification.success { background-color: #4CAF50; color: white; }
.notification.error { background-color: #F44336; color: white; }
.notification.warning { background-color: #FFC107; color: black; }
.notification.info { background-color: #2196F3; color: white; }

/* === USER PANEL === */
.user-panel {
  padding: 2rem;
  color: black;
  font-family: 'Poppins', sans-serif;
}

.auth-panel-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1 0.5rem;
  margin-bottom: 1rem;
}

.panel-close-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  align-items: self-end;
  transition: transform 0.2s ease;
}


.user-welcome-title {
  color: #009ef7;
  align-items: center;
}

.user-separator {
  border: 1px solid #444;
  margin: 0.5rem 0;
}

.user-image-wrapper {
  text-align: center;
}

.user-profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #60da28;
  margin-bottom: 0rem;
}

.user-info {
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 0.5rem;
  word-break: break-word;
  color: black;
}

.user-logout-btn {
  background-color: #e63946;
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.user-logout-btn:hover {
  background-color: #b82d23;
  transform: scale(1.03);
  color: white;
}

.hidden {
  display: none !important;
}

.user-panel-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  align-items: stretch;
}

.panel-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  min-width: 250px;
  justify-content: flex-start;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #a5e3ff;
}

.panel-action-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.panel-action-btn:hover {
  background-color: rgb(79, 165, 235);
  color: black;
  transform: scale(1.04);
}

.panel-action-btn.danger {
  background-color: #e63946;
  color: #fff;
}

.panel-action-btn.danger:hover {
  background-color: #c91b1b;
}

.panel-icon-logout {
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logout-icon-container {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.logout-icon {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logout-icon:hover {
  transform: scale(1.2);
}


/* Animasyon */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#update-customer-profile-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  background-color: #EFEFEF;
}

#update-customer-profile-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#update-customer-profile-form .form-row > div {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

#update-customer-profile-form label {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #009ef7;
}

#update-customer-profile-form input[type="text"],
#update-customer-profile-form input[type="file"] {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #a6f1fb;
  color: black;
  font-size: 14px;
}

#update-customer-profile-form input[type="text"]::placeholder {
  color: #888;
}

#update-customer-profile-form input[type="file"] {
  padding: 8px;
}

#update-customer-profile-form .auth-submit {
  align-self: flex-end;
  padding: 10px 20px;
  background-color: #f4a261;
  border: none;
  border-radius: 4px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#update-customer-profile-form .auth-submit:hover {
  background-color: #e76f51;
  color: #fff;
}

/* === Profil Fotoğrafı Güncelleme Stili === */
.profile-image-edit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.editable-profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #06c254;;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.editable-profile-img:hover {
  transform: scale(1.05);
}

.change-image-btn {
  background-color: transparent;
  border: 1px dashed #06c254;;
  color: black;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.change-image-btn:hover {
  background-color: #31da0f;;
  color: #111;
}

#update-profile-btn {
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: bold;
  background-color: #009ef7;
  color: #111;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

#update-profile-btn:hover {
  background-color: #31da0f;
  box-shadow: 0 0 8px rgba(21, 255, 0, 0.6);
}

.change-password-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.swal2-container {
  z-index: 99999 !important;
}

body.swal2-shown {
  overflow: visible !important;
}

.change-password-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background-color: #EFEFEF;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Poppins', sans-serif;
}

.change-password-form label {
  font-size: 0.95rem;
  font-weight: 500;
  color: black;
}

.change-password-form input {
  padding: 12px 15px;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #a6f1fb;
  color: black;
  transition: border-color 0.3s ease;
}

.change-password-form input:focus {
  border-color: #009ef7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 167, 66, 0.3);
}

.change-password-form input::placeholder {
  color: #aaa;
}

.change-password-form button {
  padding: 14px;
  background-color: #009ef7;
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.change-password-form button:hover {
  background-color: #0dd640;
  transform: scale(1.02);
}

/* Delete Account Form Styling */
.delete-account-form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #111;
  color: #f0f0f0;
  border-radius: 8px;
  gap: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.15);
}

.delete-account-form label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  color: #efefef;
}

.delete-account-form input {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #1d1d1d;
  color: #fff;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.delete-account-form input:focus {
  border-color: #ff4c4c;
  background-color: #222;
}

.delete-account-form .auth-submit {
  margin-top: 10px;
  background-color: #ff4c4c;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.delete-account-form .auth-submit:hover {
  background-color: #e63737;
}

.delete-account-form .auth-verify-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #ff7b7b;
  margin-bottom: 16px;
}

.delete-account-form .auth-verify-header i {
  cursor: pointer;
  font-size: 18px;
  color: #ff4c4c;
}

.change-email-form-step2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background-color: #EFEFEF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  max-width: 450px;
}

.change-email-form-step2 label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #009ef7;
}

.change-email-form-step2 input {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #a6f1fb;
  color: black;
  font-size: 0.95rem;
}

.change-email-form-step2 input::placeholder {
  color: #888;
}

.change-email-form-step3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background-color: #EFEFEF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  max-width: 450px;
}

.change-email-form-step3 label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #009ef7;
}

.change-email-form-step3 input {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #a6f1fb;
  color: black;
  font-size: 0.95rem;
}

.change-email-form-step3 input::placeholder {
  color: #888;
}

@media (max-width: 768px), (max-height: 740px) {
  .auth-slide-panel {
    padding: 1rem;
  }

  .user-profile-img {
    width: 100px;
    height: 100px;
  }

  .user-info p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .panel-action-btn {
    font-size: 0.9rem;
    padding: 0.2rem;
    width: 100%;
  }

  .logout-icon-container {
    position: static;
    text-align:end;
  }

  .panel-icon-logout {
    width: 64px;
    height: 64px;
  }

  .change-password-form {
    width: 100%;
    padding: 20px;
  }

  .change-password-form input,
  .change-password-form button {
    width: 100%;
    font-size: 1rem;
  }
}