/* Event Scheduling CSS */

/* Event details panel */
.event-details-panel {
    display: none;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

/* Color dot for event titles */
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Map container */
#map-container {
    position: relative;
    margin-top: 10px;
}

.map-container {
    height: 250px;
    border-radius: 5px;
    display: none;
    border: 1px solid #ddd;
}

.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    z-index: 10;
    display: none;
}

/* Event status badges */
.status-badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    margin-left: 5px;
}

.status-scheduled {
    color: #fff;
    background-color: #007bff;
}

.status-completed {
    color: #fff;
    background-color: #28a745;
}

.status-canceled {
    color: #fff;
    background-color: #dc3545;
}

/* Legend items */
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.color-box {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 3px;
}

/* Color boxes for the legend */
.color-blue {
    background-color: #3788d8;
}

.color-green {
    background-color: #28a745;
}

.color-red {
    background-color: #dc3545;
}

.color-orange {
    background-color: #fd7e14;
}

.color-purple {
    background-color: #6f42c1;
}

.color-teal {
    background-color: #20c997;
}

.color-pink {
    background-color: #e83e8c;
}
