/* Calendar Links Styling */

.at13-calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    color: #0073aa;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
}

.at13-calendar-link:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #d8d8d8 100%);
    color: #005a87;
    border-color: #0073aa;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.1);
    transform: translateY(-1px);
}

.at13-calendar-link:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Service-specific colors */
.at13-calendar-link.google {
    color: #4285f4;
}

.at13-calendar-link.google:hover {
    background: #e8f0fe;
}

.at13-calendar-link.apple {
    color: #555;
}

.at13-calendar-link.apple:hover {
    background: #f5f5f5;
}

.at13-calendar-link.outlook {
    color: #0078d4;
}

.at13-calendar-link.outlook:hover {
    background: #e3f2fd;
}

.at13-calendar-link.ics {
    color: #0073aa;
}

.at13-calendar-link.ics:hover {
    background: #e0f2f7;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .at13-calendar-link {
        padding: 5px 10px;
        font-size: 11px;
    }
}
