/* Galaxie Basket - Calendar Styles */

#basketball-calendar {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(238, 209, 117, 0.2);
    display: none;
}

#loading {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(238, 209, 117, 0.2);
    max-width: 600px;
    margin: 40px auto;
}

.fc {
    color: #e0e0e0;
}

.fc .fc-button-primary {
    background: linear-gradient(45deg, #eed175, #e6d45a) !important;
    border: none !important;
    color: #1a1a1a !important;
    font-weight: 600;
    text-transform: uppercase;
}

.fc .fc-button-primary:hover {
    background: linear-gradient(45deg, #e6d45a, #dcc83f) !important;
}

.fc .fc-button-primary:disabled {
    opacity: 0.5;
}

.fc-icon-chevron-left,
.fc-icon-chevron-right {
    color: #1a1a1a;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border-color: rgba(238, 209, 117, 0.2) !important;
}

.fc-day-today {
    background: rgba(238, 209, 117, 0.1) !important;
}

.fc-daygrid-event-harness {
    line-height: 1.2;
}

.fc-daygrid-day-number {
    color: #e0e0e0 !important;
}

.fc-daygrid-event-dot {
    display: none;
}

.fc-col-header-cell {
    background: rgba(30, 30, 30, 0.95) !important;
    color: #eed175 !important;
    font-weight: 700;
    text-transform: uppercase;
}

.fc-event {
    border: none !important;
    border-radius: 5px;
    padding: 2px 5px;
}

.fc-event-title {
    font-weight: 500;
}

.fc-event-match {
    background: linear-gradient(45deg, #33baccff, #13a6b9ff) !important;
    color: #1a1a1a !important;
}

.fc-event-training {
    background: rgba(238, 209, 117, 0.3) !important;
    color: #eed175 !important;
}

.fc-event-special {
    background: rgba(71, 218, 237, 0.3) !important;
    color: #47daed !important;
    border: 1px solid #47daed !important;
}

.fc-popover {
    background: rgba(30, 30, 30, 0.98) !important;
    border: 2px solid #eed175 !important;
    border-radius: 10px;
    color: #e0e0e0 !important;
}

.fc-popover-header {
    background: rgba(238, 209, 117, 0.2) !important;
    color: #eed175 !important;
}

.event-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 30, 30, 0.98);
    border: 2px solid #eed175;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.event-modal h2 {
    color: #eed175;
    margin-bottom: 1rem;
}

.event-modal p {
    color: #d0d0d0;
    margin: 0.5rem 0;
}

.event-modal .close-btn {
    background: linear-gradient(45deg, #eed175, #e6d45a);
    border: none;
    border-radius: 25px;
    color: #1a1a1a;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 1rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}