/**
 * Styling for the 7-day date picker field
 */
.acf-seven-day-picker {
    margin: 10px 0;
}

.acf-seven-day-picker-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.acf-seven-day-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 90px;
    border-radius: 8px;
    background-color: #f7f7f7;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    padding: 8px 4px;
}

.acf-seven-day-tile:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
}

/* Today class styling removed */

.acf-seven-day-tile.selected {
    background-color: #ebf8ff;
    border-color: #3182ce;
    box-shadow: 0 4px 6px rgba(49, 130, 206, 0.1);
}

.acf-seven-day-weekday {
    font-weight: bold;
    font-size: 13px;
    color: #2d3748;
    margin-bottom: 5px;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.acf-seven-day-date {
    font-size: 24px;
    font-weight: bold;
    color: #1a202c;
}

.acf-seven-day-month {
    font-size: 12px;
    color: #4a5568;
    margin-top: 2px;
}

.acf-seven-day-year {
    font-size: 10px;
    color: #718096;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 782px) {
    .acf-seven-day-picker-tiles {
        justify-content: center;
    }
    
    .acf-seven-day-tile {
        width: 85px;
        height: 85px;
    }
    
    .acf-seven-day-weekday {
        font-size: 12px;
    }
    
    .acf-seven-day-date {
        font-size: 20px;
    }
    
    .acf-seven-day-month {
        font-size: 11px;
    }
}

/* For very small screens - switch to abbreviated weekdays */
@media (max-width: 480px) {
    .acf-seven-day-tile {
        width: 70px;
    }
    
    .acf-seven-day-weekday {
        font-size: 11px;
    }
}
