/* Meetings Page Styles */

/* Meeting Method Badges */
.meeting-method-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.meeting-method-phone {
    background: #e3f2fd;
    color: #1976d2;
}

.meeting-method-google_meet {
    background: #f3e5f5;
    color: #7b1fa2;
}

.meeting-method-physical {
    background: #e8f5e9;
    color: #388e3c;
}

.meeting-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid #212529;
}

.meeting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.meeting-card-header {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meeting-date-badge {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.meeting-day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.meeting-month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.meeting-time {
    font-size: 18px;
    font-weight: 500;
}

.meeting-card-body {
    padding: 20px;
}

.meeting-project-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.meeting-client-name {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
}

.meeting-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.meeting-badge-today {
    background: #d1ecf1;
    color: #0c5460;
}

.meeting-badge-overdue {
    background: #f8d7da;
    color: #721c24;
}

.meeting-agenda-preview {
    margin: 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.meeting-agenda-preview strong {
    display: block;
    margin-bottom: 8px;
    color: #212529;
}

.meeting-agenda-preview ul {
    margin: 0;
    padding-left: 20px;
}

.meeting-agenda-preview li {
    margin: 4px 0;
    color: #495057;
}

.meeting-link {
    margin: 15px 0;
}

.meeting-card-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.meeting-card-footer .btn {
    flex: 0 0 auto;
}

/* Meeting Status Variations */
.meeting-completed {
    opacity: 0.7;
    border-left-color: #28a745;
}

.meeting-completed .meeting-card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.meeting-cancelled {
    opacity: 0.6;
    border-left-color: #dc3545;
}

.meeting-cancelled .meeting-card-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.meeting-today {
    border-left-color: #17a2b8;
}

.meeting-today .meeting-card-header {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.meeting-overdue {
    border-left-color: #ffc107;
}

.meeting-overdue .meeting-card-header {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h5 {
    color: #495057;
    margin-bottom: 10px;
}

/* Summary Cards */
.summary-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.summary-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.summary-value {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-top: 8px;
}

/* Agenda Items in Modal */
#agendaItems .input-group,
#editAgendaItems .input-group {
    margin-bottom: 10px;
}

.agenda-item {
    font-size: 14px;
}

/* Nav Tabs */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-tabs .nav-link:hover {
    color: #212529;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.nav-tabs .nav-link.active {
    color: #212529;
    background: transparent;
    border-bottom: 3px solid #212529;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .meeting-card-footer {
        flex-direction: column;
    }
    
    .meeting-card-footer .btn {
        width: 100%;
    }
    
    .summary-value {
        font-size: 28px;
    }
}

