    * {
        font-family: Arial, sans-serif;
    }

    .days-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        /* max-width: 400px; */
        margin: auto;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    .day-item {
        display: block;
        width: 100%;
        text-align: center;
        background: #007bff;
        color: white;
        padding: 12px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        transition: background 0.3s;
    }

    .day-item:hover {
        background: #0056b3;
    }

    .all-days-item {
        background: #28a745;
        border: 2px solid #1e7e34;
    }

    .all-days-item:hover {
        background: #1e7e34;
    }

    /* Alternatif arka plan rengi (sıra numarasına göre) */
    .day-item:nth-child(even) {
        background: #6c757d;
    }

    .day-item:nth-child(even):hover {
        background: #5a6268;
    }

    /* Mobil uyumluluk */
    @media (max-width: 500px) {
        .days-container {
            width: 90%;
            padding: 15px;
        }

        .day-item {
            font-size: 16px;
            padding: 10px;
        }
    }