/**
 * Dodatkowe style dla kalendarza "Mój Kalendarz"
 * Customer Management Plugin
 * 
 * UWAGA: Ten plik zawiera tylko dodatkowe style specyficzne dla kalendarza użytkownika.
 * Główne style kalendarza są w wydarzenia-calendar-style.css
 */

/* ============================================
   SZCZEGÓŁY SPOTKANIA
   ============================================ */

.cmp-meeting-details {
    padding: 20px 0;
}

.meeting-detail-row {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.meeting-detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.meeting-detail-label {
    margin-bottom: 8px;
    color: #666;
}

.meeting-detail-value {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ============================================
   LISTA WSZYSTKICH SPOTKAŃ DNIA
   ============================================ */

.cmp-all-meetings-list {
    max-height: 500px;
    overflow-y: auto;
}

.meeting-list-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.meeting-list-item:hover {
    background: #e3f2fd;
    border-color: #2271b1;
    transform: translateX(5px);
}

.meeting-list-item:last-child {
    margin-bottom: 0;
}

.meeting-list-item.meeting-all-day {
    background: #fff3e0;
    border-color: #ff9800;
}

.meeting-list-item.meeting-all-day:hover {
    background: #ffe0b2;
}

.meeting-time {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.meeting-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.meeting-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.meeting-author {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* ============================================
   POPUP WIĘKSZY (dla listy wszystkich)
   ============================================ */

.cmp-wydarzenie-popup-large .cmp-wydarzenie-popup-content {
    max-width: 700px;
    width: 90%;
}

/* ============================================
   RESPONSYWNOŚĆ
   ============================================ */

@media (max-width: 768px) {
    .cmp-all-meetings-list {
        max-height: 400px;
    }
    
    .meeting-list-item {
        padding: 12px;
    }
    
    .meeting-title {
        font-size: 15px;
    }
    
    .meeting-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cmp-all-meetings-list {
        max-height: 300px;
    }
    
    .meeting-list-item {
        padding: 10px;
    }
    
    .meeting-list-item:hover {
        transform: none;
    }
}