/* 
 * VOD Appointment Styles
 * Styling for the VOD appointment display shortcode and widget
 */

.vod-appointment-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.vod-appointment-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2a3b5a;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    font-size: 1.4em;
    text-align: center;
}

.vod-appointment-details {
    margin: 15px 0;
}

.vod-appointment-details > div {
    margin-bottom: 15px;
    line-height: 1.6;
}

.vod-appointment-event {
    font-size: 1.1em;
}

.vod-appointment-datetime {
    background-color: #f0f0f0;
    padding: 10px;
    border-left: 3px solid #2a3b5a;
    margin: 15px 0;
}

.vod-appointment-location {
    margin-top: 10px;
}

.vod-appointment-location a {
    color: #2a3b5a;
    font-weight: 600;
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 3px;
    background-color: #f0f0f0;
    transition: all 0.2s ease;
}

.vod-appointment-location a:hover {
    background-color: #2a3b5a;
    color: white;
    text-decoration: none;
}

.vod-appointment-hosts {
    margin-top: 10px;
    font-style: italic;
}

.vod-appointment-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.vod-reschedule-button, 
.vod-cancel-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.vod-reschedule-button {
    background-color: #2a3b5a;
    color: white;
}

.vod-reschedule-button:hover {
    background-color: #1e2c46;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vod-cancel-button {
    background-color: #dc3232;
    color: white;
}

.vod-cancel-button:hover {
    background-color: #c41e1e;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .vod-appointment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .vod-reschedule-button, 
    .vod-cancel-button {
        width: 80%;
        margin-bottom: 10px;
    }
}