/* Boss Respawn Schedule Styles - Calendar View */

.boss-schedule {
    max-width: 1500px;
    margin: 0 auto 20px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    padding-top: 76px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.boss-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bcd4, #4caf50);
    border-radius: 16px 16px 0 0;
}

.boss-schedule h2 {
    margin-top: 8px;
    color: var(--text-color);
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.boss-schedule h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color, #007bff), #00bcd4);
    border-radius: 2px;
}

.boss-grid {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    position: relative;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color, #007bff) var(--border-color);
}

.boss-grid::-webkit-scrollbar {
    height: 8px;
}

.boss-grid::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

.boss-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color, #007bff);
    border-radius: 4px;
}

.boss-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color, #0056b3);
}

.boss-card {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 80px;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.boss-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color, #007bff), #00bcd4, #4caf50);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.boss-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    border-color: var(--accent-color, #d24e3d);
}

.boss-card:hover::before {
    opacity: 1;
    height: 6px;
}

.boss-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--secondary-bg, #f0f0f0), var(--border-color, #e0e0e0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(255,255,255,0.5);
}

.boss-card:hover .boss-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--accent-color, #007bff), #00bcd4);
    color: white;
}

.boss-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.boss-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 6px 0;
    color: var(--text-color);
    line-height: 1.3;
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.boss-card:hover .boss-name {
    color: var(--accent-color, #007bff);
    text-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

.boss-date {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.boss-day {
    font-size: 0.8rem;
    color: var(--accent-color, #d24e3d);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.boss-card:hover .boss-date {
    background: rgba(0,123,255,0.2);
    color: var(--accent-color, #007bff);
}

.boss-time {
    font-size: 0.95rem;
    color: var(--accent-color, #007bff);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-color, #007bff), #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.boss-card:hover .boss-time {
    letter-spacing: 1.5px;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .boss-schedule {
        padding: 20px;
        margin: 0 16px 20px;
        border-radius: 14px;
    }
    
    .boss-grid {
        gap: 16px;
        margin-top: 12px;
        padding-bottom: 8px;
    }
    
    .boss-card {
        padding: 14px;
        min-height: 70px;
        min-width: 180px;
        border-radius: 10px;
        border-width: 1px;
    }
    
    .boss-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
        margin-right: 12px;
    }
    
    .boss-info {
        min-width: 0;
    }
    
    .boss-name {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .boss-date {
        font-size: 0.85rem;
    }
    
    .boss-day {
        font-size: 0.75rem;
    }
    
    .boss-schedule h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .boss-schedule h2::after {
        width: 60px;
        height: 3px;
    }
    
    .boss-name {
        font-size: 1rem;
        margin: 8px 0 6px;
        font-weight: 600;
    }
    
    .boss-date {
        font-size: 0.85rem;
        margin-bottom: 5px;
        padding: 2px 8px;
    }
    
    .boss-time {
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .boss-grid {
        gap: 14px;
        padding-bottom: 6px;
    }
    
    .boss-schedule {
        padding: 18px;
        margin: 54px 12px 18px;
        border-radius: 12px;
        z-index: 100;
    }
    
    .boss-schedule h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
        padding-bottom: 8px;
    }
    
    .boss-card {
        padding: 12px;
        min-height: 65px;
        min-width: 160px;
        border-radius: 8px;
    }
    
    .boss-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
        margin-right: 10px;
    }
    
    .boss-name {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .boss-date {
        font-size: 0.8rem;
    }
    
    .boss-day {
        font-size: 0.7rem;
    }
    
    .boss-name {
        font-size: 0.95rem;
        margin: 6px 0 4px;
        font-weight: 600;
    }
    
    .boss-date {
        font-size: 0.8rem;
        padding: 2px 6px;
        margin-bottom: 4px;
    }
    
    .boss-time {
        font-size: 0.85rem;
        letter-spacing: 0.6px;
    }
}

.boss-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.boss-grid::-webkit-scrollbar-thumb {
    background: #c5c5c5;
}

.boss-grid::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

.boss-grid {
    scrollbar-color: #c5c5c5 #f1f1f1;
}