
/* Soldaki Buton (btn1) için özel stil */
#btn1 {
    background: #4CAF50; /* Yeşil renk */
    color: white;
    border-radius: 25px;
    padding: 12px 40px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Soldaki Buton üzerine gelindiğinde */
#btn1:hover {
    background: #45a049; /* Hover efekti ile biraz daha koyu yeşil */
    transform: translateY(-2px);
}

/* Buton Konteyneri */
.notification-btn-container {
    display: flex;
    gap: 10px; /* Butonlar arasındaki boşluk */
    justify-content: center; /* Butonları ortalamak */
    width: 100%;
}

/* Modal Arka Planı */
.notification-modal {
    display: none; /* Başlangıçta modal görünmesin */
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: fixed; /* Sayfanın üzerinde sabit kalacak */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Ortalamak için kullanılır */
    z-index: 9999; /* Modal'ı her zaman sayfanın üstünde tutar */
    opacity: 0;
    pointer-events: none; /* Başlangıçta tıklanamaz */
    transition: opacity 0.3s ease; /* Opaklık animasyonu */
    transition: all 0.3s ease; /* Tüm geçişlerin yumuşak olması için */
    justify-content: center; /* Yatayda ortalama */
    align-items: center;     /* Dikeyde ortalama */
}

/* Modal İçeriği */
.notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* İkon */
.notification-icon {
    width: 50px;
    height: 50px;
    background: #FF1493;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.notification-icon i {
    color: white;
    font-size: 22px;
}

/* Başlık */
.notification-title {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 500;
    padding: 0 10px;
}

/* Metin */
.notification-text {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    padding: 0 15px;
}

/* Buton */
.notification-btn {
    background: #FF1493;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 80%;
}

.notification-btn:hover {
    background: #ff0084;
    transform: translateY(-2px);
}


/* Modal açıldığında aktif olacak sınıf */
.notification-modal.show {
    opacity: 1; /* Modal'ı görünür yapar */
    pointer-events: auto; /* Modal ile etkileşim mümkün */
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
}

.modal-content h2 {
    text-align: center;
    font-size: 18px;
    color: #111827;
    margin: 0 0 24px;
}

.form-group {
    margin-bottom: 16px;
}

.select-wrapper {
    position: relative;
    background: #F3F4F6;
    border-radius: 8px;
}

.select-wrapper select {
    width: 100%;
    padding: 12px;
    border: none;
    background: transparent;
    appearance: none;
    font-size: 14px;
    color: #6B7280;
}

.select-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #111827;
}

.form-group textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #F3F4F6;
    font-size: 14px;
    color: #111827;
    resize: none;
}

/* Modal submit button styles */
.submit-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    background: #0E7490; /* Cyan 700 - default color */
    color: white;
}

.submit-button.reddet {
    background: rgba(219, 39, 119, 1); /* Pink 600 - for reject button */
}

.submit-button:hover {
    background: #155E75; /* Cyan 800 */
}

.submit-button.reddet:hover {
    background: rgba(190, 24, 93, 1); /* Pink 700 */
}

/*uyari modal alert ek css start*/
.notification-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.notification-close:hover {
  color: #333;
}

.notification-icon {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 10px;
}

.notification-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.notification-text {
  margin: 10px 0 20px;
}

.notification-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
/*uyari modal alert ek css end*/
