/* FontAwesome CDN'i buradan @import ederek her zaman yüklenmesini sağlıyoruz */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif; /* Poppins fontu eklendi */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f0f2f5; /* Hafif gri arka plan */
    color: #333;
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
}

.container {
    width: 90%; /* Genişlik artırıldı */
    margin: auto;
    overflow: hidden; /* Bu, genel sayfa düzenini etkiler, scroll'u engellemez */
    padding: 20px 0;
}

/* Header Stilleri (user_header.php'den ve admin_header.php'den taşındı) */
header {
    background: #2c3e50; /* Koyu lacivert */
    color: #fff;
    padding: 15px 0;
    border-bottom: 4px solid #3498db; /* Mavi alt çizgi */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* Hafif gölge */
    position: relative; /* Hamburger menü için */
    z-index: 999; /* Bildirim zilinden biraz daha düşük olsun */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    padding: 0 15px; /* Yanlardan boşluk */
}

header #branding {
    flex-shrink: 0;
}

header #branding h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
}

header #branding a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
/* =================================
   KOYU TEMA STİLLERİ
   ================================= */

/* Genel sayfa arkaplanı ve yazı rengi */
body.dark-mode {
    background-color: #121212; /* Koyu arkaplan */
    color: #e0e0e0;           /* Açık gri yazı rengi */
}

/* Panelim, Görevler gibi ana içerik alanları */
body.dark-mode .main-content {
    background: transparent; /* body'nin arkaplanını kullanması için */
}

/* Kartlar (Yeni Görev, Kazan, Yükle, Ayarlar) */
body.dark-mode .action-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Başlıklar ve paragraflar */
body.dark-mode .page-header h2,
body.dark-mode .action-card h4,
body.dark-mode .section-title {
    color: #ffffff; /* Beyaz başlıklar */
}

body.dark-mode .page-header p,
body.dark-mode .action-card p {
    color: #a0a0a0; /* Daha soluk gri açıklamalar */
}

/* "Henüz oluşturulmuş bir göreviniz yok" gibi metinler */
body.dark-mode p {
    color: #a0a0a0;
}

/* Bakiye kartındaki büyük yazı */
body.dark-mode .balance-card p {
    color: #ffffff !important; /* Bu zaten doğru, ama emin olmak için */
}

/* Tablo stilleri (eğer görevler listelenseydi) */
body.dark-mode table {
    background: #1e1e1e;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

body.dark-mode table th,
body.dark-mode table td {
    color: #e0e0e0;
    border-bottom: 1px solid #333;
}
header #branding a:hover {
    color: #f0ad4e; /* Vurgu rengi */
}

/* Navigasyon Menüsü Stilleri */
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease-in-out;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

header nav ul li a:hover {
    color: #3498db;
}

/* Hamburger Menü */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    outline: none;
    padding: 5px;
}

/* Yeni Bildirim Pop-up Stilleri */
.notification-popup-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 280px;
    max-width: 350px;
    padding: 15px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    pointer-events: none;
}
.notification-popup-container.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.notification-popup-container.hide {
    opacity: 0;
    transform: translateX(100%);
}

.notification-popup-container .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.notification-popup-container .popup-header h4 {
    margin: 0;
    color: #3498db;
    font-size: 1.1em;
    font-weight: 600;
}
.notification-popup-container .popup-header .close-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #777;
    cursor: pointer;
    outline: none;
}
.notification-popup-container .popup-header .close-btn:hover {
    color: #333;
}

.notification-popup-container .popup-content h5 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1em;
}
.notification-popup-container .popup-content p {
    margin: 0;
    font-size: 0.85em;
    color: #555;
    line-height: 1.4;
    text-align: left;
}
.notification-popup-container .popup-content small {
    display: block;
    text-align: right;
    font-size: 0.75em;
    color: #888;
    margin-top: 5px;
}

/* Genel İçerik Stilleri (main-content ve içindeki elemanlar) */
.main-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-top: 30px;
    overflow: hidden;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 2.2em;
}
p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Formlar ve Butonlar (Genel) */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}
.btn {
    display: inline-block;
    color: #fff;
    background: #3498db;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}
.btn:hover {
    background: #2980b9;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}
.btn-danger { background-color: #e74c3c; }
.btn-danger:hover { background-color: #c0392b; }
.btn-success { background-color: #2ecc71; }
.btn-success:hover { background-color: #27ae60; }
.btn-info { background-color: #3498db; }
.btn-info:hover { background-color: #2980b9; }

/* Alert Mesajları */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 500;
    text-align: left;
}
.alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background-color: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* Tablolar (Genel) */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
table {
    width: 100%;
    min-width: 600px; /* Mobil'de tablonun minimum genişliği */
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}
table th {
    background-color: #34495e;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}
table tr:nth-child(even) {
    background-color: #f9f9f9;
}
table tr:hover {
    background-color: #eef;
}
/* Durum renkleri */
.status-pending { color: #ff8c00; font-weight: bold; }
.status-approved { color: #28a745; font-weight: bold; }
.status-rejected { color: #dc3545; font-weight: bold; }
.status-active { color: #3498db; font-weight: bold; }
.status-completed { color: #28a745; font-weight: bold; }
.status-paused { color: #f1c40f; font-weight: bold; }
.status-cancelled { color: #e74c3c; font-weight: bold; }

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 30px;
}

/* Responsive - Genel Mobil Ayarlar */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .main-content { padding: 15px; }
    h2 { font-size: 1.8em; margin-bottom: 20px; }
    p { font-size: 1em; margin-bottom: 20px; }

    /* Header Mobil */
    header nav {
        display: none; 
        width: 100%; 
        background: #34495e; 
        position: absolute; 
        top: 100%; 
        left: 0;
        z-index: 1000; 
        padding: 10px 0;
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        transform-origin: top; 
        transform: scaleY(0); 
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
    header nav.active {
        display: block;
        transform: scaleY(1);
        opacity: 1;
    }
    header nav ul { flex-direction: column; align-items: center; padding: 0; }
    header nav ul li { margin: 0; width: 100%; text-align: center; }
    header nav ul li a {
        font-size: 1.1em;
        padding: 12px 15px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    header nav ul li:last-child a { border-bottom: none; }
    .menu-toggle { display: block; }

    /* Tablolar için mobil duyarlılık (yatay kaydırma) */
    table { width: 100%; }
    table th, table td { padding: 10px; font-size: 0.85em; }
    table td[data-label="Açıklama:"],
    table td[data-label="Yorum Metni:"],
    table td[data-label="Hedef:"] a,
    table td[data-label="IBAN:"],
    table td[data-label="Banka Adı:"] {
        white-space: normal; 
        word-break: break-all;
    }
    
    /* Formlar için mobil */
    .form-group input, .form-group select, .form-group textarea {
        padding: 10px;
        font-size: 0.95em;
    }
    .btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    /* create_task.php Mobil Ayarlamaları (Özel) */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0;
    }
    .steps-container::before { display: none; }
    .step { margin-bottom: 0; }
    .step-circle { width: 40px; height: 40px; font-size: 1.2em; }
    .step-title { font-size: 0.8em; }
    .task-type-selection {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .task-type-card {
        width: 90%;
        max-width: 300px;
        padding: 15px;
    }
    .task-type-card h4 { font-size: 1.1em; }
    .task-type-card p { font-size: 0.85em; }
    .form-section { padding: 20px; }
    .form-section h3 { font-size: 1.5em; margin-bottom: 20px; }
    .form-group label { font-size: 0.9em; }
    .form-group input, .form-group textarea { padding: 10px; font-size: 0.9em; }
    .price-details-box { padding: 15px; font-size: 0.95em; }
    .action-buttons { flex-direction: column; gap: 15px; }
    .action-buttons .btn { width: 100%; font-size: 1em; padding: 10px 20px; }
}

/* Daha küçük ekranlar için (örn. iPhone 5/SE) */
@media (max-width: 480px) {
    .container { width: 95%; padding: 0 10px; }
    h2 { font-size: 1.6em; }
    table { min-width: 500px; } 
    table th, table td { padding: 8px; font-size: 0.8em; }
    .btn { padding: 10px 18px; font-size: 0.9em; }
    
    /* create_task.php için daha küçük ekranlarda ek ayarlamalar */
    .steps-container { gap: 10px; }
    .step-circle { width: 35px; height: 35px; font-size: 1em; }
    .step-title { font-size: 0.75em; }
    .task-type-card { padding: 10px; }
    .task-type-card h4 { font-size: 1em; }
}
/* Cep Telefonu ve Diger Input Kutulari icin Ortak Stil Iyileştirmeleri */
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    /* Mevcut stillerinizle birlikte kullanın */
    width: 100%; /* Kutunun tam genişliği kaplamasını sağlar */
    padding: 12px 15px; /* Üst/alt ve sağ/sol padding'i ayarlar */
    border: 1px solid #ddd; /* Çerçeve rengi ve kalınlığı */
    border-radius: 8px; /* Köşe yuvarlaklığı */
    font-size: 1em; /* Yazı boyutu */
    box-sizing: border-box; /* Padding ve border'ın kutu genişliğine dahil olmasını sağlar */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Odaklanma efekti geçişi */

    /* DÜZELTME: Metnin dikey hizalamasını ve kutu yüksekliğini tutarlı hale getirir */
    height: 48px; /* Tüm input kutuları için sabit yükseklik */
    line-height: 24px; /* Metnin dikeyde ortalanması için satır yüksekliği (padding ile birlikte) */
    /* Önceki flexbox stilleri kaldırıldı, çünkü input elementleri için her zaman güvenilir olmayabilir */
    /* display: flex; */
    /* align-items: center; */
}

.form-group input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

/* Kullanıcı Sözleşmesi Onay Kutusu ve Metni İçin İyileştirmeler */
.terms-group {
    display: flex; /* İçindeki öğeleri esnek kutu olarak düzenle */
    align-items: center; /* Öğeleri dikeyde ortala (checkbox ve metni hizalar) */
    gap: 10px; /* Öğeler arasında boşluk bırak */
    text-align: left; /* Metni sola hizala */
    font-size: 0.9em; /* Yazı boyutunu ayarla */
    margin-bottom: 25px; /* Alt boşluk */
}

.terms-group input[type="checkbox"] {
    width: 20px; /* Checkbox'ın genişliği */
    height: 20px; /* Checkbox'ın yüksekliği */
    margin: 0; /* Tarayıcının varsayılan marginlerini sıfırla */
    flex-shrink: 0; /* Boyutunun küçülmesini engelle */
    cursor: pointer; /* Fare imlecini işaretçi yap */

    /* Varsayılan tarayıcı görünümünü kaldır */
    appearance: none;
    -webkit-appearance: none;

    border: 2px solid #3498db; /* Çerçeve rengi ve kalınlığı */
    border-radius: 4px; /* Hafif yuvarlak köşeler */
    position: relative; /* Tik işareti için konumlandırma */
    outline: none; /* Odaklandığında dış çizgiyi kaldır */
    transition: all 0.2s ease; /* Yumuşak geçiş efekti */
}

.terms-group input[type="checkbox"]:checked {
    background-color: #3498db; /* Seçildiğinde arka plan rengi */
    border-color: #3498db; /* Seçildiğinde çerçeve rengi */
}

.terms-group input[type="checkbox"]:checked::before {
    content: '\2713'; /* Unicode tik işareti */
    display: block;
    color: #fff; /* Tik işaretinin rengi */
    font-size: 14px; /* Tik işaretinin boyutu */
    line-height: 1; /* Tik işaretinin dikey hizalamasını iyileştir */
    text-align: center; /* Tik işaretinin yatay hizalaması */
    position: absolute;
    top: 50%; /* Dikeyde ortala */
    left: 50%; /* Yatayda ortala */
    transform: translate(-50%, -50%); /* Tam ortalamak için transform kullan */
    width: 100%;
    height: 100%;
}

.terms-group label {
    margin-bottom: 0; /* Varsayılan marginleri sıfırla */
    font-weight: normal; /* Yazı kalınlığı */
    color: #666; /* Metin rengi */
    line-height: 1.5; /* Satır yüksekliği */
    white-space: normal; /* Metnin normal şekilde sarmasına izin ver */
    flex-grow: 1; /* Kalan alanı doldurmasını sağla */
}
/* Genel Input Kutuları için Ortak Stil İyileştirmeleri */
/* Bu kurallar hem register.php hem de login.php'deki inputları etkileyecektir */
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="tel"] { /* Eğer gelecekte login.php'ye tel inputu eklenirse diye dahil edildi */
    width: 100%; /* Kutunun tam genişliği kaplamasını sağlar */
    padding: 12px 15px; /* Üst/alt ve sağ/sol padding'i ayarlar */
    border: 1px solid #ddd; /* Çerçeve rengi ve kalınlığı */
    border-radius: 8px; /* Köşe yuvarlaklığı */
    font-size: 1em; /* Yazı boyutu */
    box-sizing: border-box; /* Padding ve border'ın kutu genişliğine dahil olmasını sağlar */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Odaklanma efekti geçişi */

    height: 48px; /* Tüm input kutuları için sabit yükseklik */
    line-height: 24px; /* Metnin dikeyde ortalanması için satır yüksekliği (padding ile birlikte) */
}

.form-group input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

/* Kullanıcı Sözleşmesi Onay Kutusu ve Metni İçin İyileştirmeler (Sadece register.php'de kullanılacak) */
.terms-group {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.terms-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    position: relative;
    outline: none;
    transition: all 0.2s ease;
}

.terms-group input[type="checkbox"]:checked {
    background-color: #3498db;
    border-color: #3498db;
}

.terms-group input[type="checkbox"]:checked::before {
    content: '\2713';
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.terms-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #666;
    line-height: 1.5;
    white-space: normal;
    flex-grow: 1;
}
/* =================================
   PROFİL SAYFASI - KOYU TEMA
   ================================= */

/* "Profilim" gibi sayfa başlıkları */
body.dark-mode .main-content h2 {
    color: #ffffff;
}

/* "Hesap Bilgileri" ve "Son İşlemlerim" gibi beyaz kartlar */
body.dark-mode .card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #e0e0e0; /* Kart içindeki varsayılan yazı rengi */
}

/* Kart başlıkları (örn: "Hesap Bilgileri") */
body.dark-mode .card-header,
body.dark-mode .card h3 {
    color: #f0f0f0;
    border-bottom: 1px solid #333; /* Başlık altındaki çizgiyi belirginleştir */
}

/* Form Alanları (Hesap Bilgileri Kartı) */
body.dark-mode .form-group label {
    color: #a0a0a0; /* Etiketleri biraz daha soluk yap */
}

/* "denemetest" gibi statik görünen değerler */
body.dark-mode .form-group p {
    color: #ffffff;
}

/* Instagram kullanıcı adı gibi input alanları */
body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="password"] {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #e0e0e0;
}

/* Input içindeki placeholder yazısı */
body.dark-mode input::placeholder {
    color: #777;
}

/* "Görev yapmak için gereklidir" gibi küçük yardım metinleri */
body.dark-mode .form-text {
    color: #888;
}

/* İşlem Geçmişi Tablosu */
body.dark-mode table th {
    color: #c0c0c0; /* Tablo başlıkları */
}

body.dark-mode table td {
    color: #e0e0e0; /* Tablo hücreleri */
    border-bottom: 1px solid #333; /* Hücreler arası çizgi */
}

/* Tablodaki son satırın altındaki çizgiyi kaldırmak isterseniz */
body.dark-mode table tr:last-child td {
    border-bottom: none;
}

/* Fare ile üzerine gelince satır rengini değiştir (isteğe bağlı) */
body.dark-mode table tbody tr:hover {
    background-color: #2a2a4e;
}

/* "Tümünü Gör" linki */
body.dark-mode a {
    color: #4a90e2; /* Linkler için canlı bir renk */
}

body.dark-mode a:hover {
    color: #7aaef5;
}
/* =================================================================
   CREATE_TASK.PHP SAYFASINA ÖZEL STİLLER
   ================================================================= */

.info-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
}

.steps-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    border: 3px solid var(--main-bg);
}

.step-title {
    font-size: 1em;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.step.active .step-circle {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.step.active .step-title {
    color: var(--accent-color);
    font-weight: 700;
}

.form-section {
    text-align: left;
}

.form-section h3 {
    color: var(--text-primary);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.task-type-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.task-type-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-type-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.task-type-card.selected {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.1);
    transform: translateY(-5px);
}

.task-type-card i {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.task-type-card h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.2em;
}

.price-details-box {
    background-color: var(--main-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.list-group {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.list-group-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--card-bg);
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item strong {
    color: var(--text-primary);
}
.notification-container {
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
  display: none;
  width: 320px;
  z-index: 9999;
}

.notification-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notification-dropdown li {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.notification-dropdown li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .notification-container {
    right: 10px;
    width: 90vw;
  }
}