/* Iframe Date Manager Frontend Styles */

.iframe-date-list {
    max-width: 100%;
    margin: 20px 0;
}

.date-section {
    margin-bottom: 30px;
}

.date-header {
    font-size: 1.1em;
    font-weight: bold;
    color: #0274be;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.date-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.link-item {
    margin-bottom: 8px;
}

.date-link {
    display: block;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.date-link:hover {
    background: #f8f9fa;
    border-color: #0073aa;
    color: #005a87;
    text-decoration: none;
}

.date-link:before {
    content: "🔗 ";
    margin-right: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .iframe-date-list {
        margin: 15px 0;
    }
    
    .date-header {
        font-size: 1.2em;
    }
    
    .date-link {
        padding: 8px 12px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .date-header {
        font-size: 1.1em;
    }
    
    .date-link {
        padding: 6px 10px;
        font-size: 0.9em;
    }
}
