body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2 {
    color: #2d3748;
}

.active-step {
    background-color: #48bb78;
    color: white;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.step {
    background-color: #edf2f7;
    border-radius: 8px;
    padding: 12px;
}

.icon-ok {
    color: #48bb78;
    font-size: 1.5rem;
    margin-left: 10px;
}

.countdown {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e53e3e;
}

.popup {
    display: none;
    position: fixed;
    top: 20%;
    left: 20%;
    width: 60%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

button, a.bg-blue-500, a.bg-yellow-500, a.bg-green-500 {
    transition: background-color 0.3s ease;
}

button:hover, a.bg-blue-500:hover, a.bg-yellow-500:hover, a.bg-green-500:hover {
    filter: brightness(90%);
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .popup {
        width: 90%;
        left: 5%;
    }
}
/* Mevcut style.css dosyanıza aşağıdaki satırları ekleyin */
.termin-kalan {
    font-weight: bold;
}

.termin-kritik {
    color: #ef4444;
    /* Kırmızı: 10 gün ve altı */
}

.termin-negatif {
    color: #b91c1c;
    /* Koyu kırmızı: Negatif günler */
    font-weight: 900;
}

.durum-yesil {
    color: #22c55e;
    /* Yeşil */
}

.eklenti-resim a {
    color: #3b82f6;
    text-decoration: underline;
}

.eklenti-not {
    background-color: #f3f4f6;
    padding: 8px;
    border-radius: 4px;
    margin: 4px 0;
}

.adet-koyu {
    color: #1f2937;
    /* Koyu siyah */
    font-weight: bold;
}

/* Mobil cihazlarda admin tablosunu dikey ve okunabilir hale getir */
@media screen and (max-width: 768px) {
    table thead {
        display: none;
    }

    table,
    table tbody,
    table tr,
    table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 0.5rem;
        padding: 1rem;
        background-color: #fff;
    }

    table td {
        text-align: left;
        padding: 0.5rem 0;
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        font-weight: bold;
        white-space: nowrap;
        color: #555;
    }
}