/* ============================================
   EVENT EVALUATION FORM STYLES
   ============================================ */

.sidebar-evaluation {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    border: 2px solid #e0f2f1;
}

.evaluation-form {
    margin-top: 15px;
}

.eval-group {
    margin-bottom: 15px;
}

.eval-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
}

.eval-group select,
.eval-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0f2f1;
    border-radius: 6px;
    background: #fff;
    color: var(--text-color);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.eval-group select:focus,
.eval-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 77, 64, 0.1);
}

.eval-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 28px;
    color: #ddd;
    transition: all 0.2s ease;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: #ffc107;
}

.star-rating label:hover {
    transform: scale(1.1);
}

/* Submit Button */
.btn-submit-eval {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit-eval:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 77, 64, 0.3);
}

.btn-submit-eval:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Evaluation Message */
.eval-message {
    display: none;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.eval-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.eval-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ============================================
   RESOURCE LIST STYLES
   ============================================ */

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f7fafc;
    border: 1px solid #e0f2f1;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: #e8f5f3;
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.resource-item > i:first-child {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.resource-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.resource-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.resource-size {
    font-size: 12px;
    color: var(--text-muted);
}

.resource-item > i:last-child {
    font-size: 14px;
    color: var(--text-muted);
}

.no-resources {
    text-align: center;
    padding: 30px 20px;
    background: #f7fafc;
    border-radius: 6px;
}

.no-resources i {
    font-size: 32px;
    color: #ccc;
    margin-bottom: 10px;
}

.no-resources p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   EVENT STATISTICS STYLES
   ============================================ */

.event-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f7fafc;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.stat-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 32px;
    text-align: center;
}

.stat-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-item strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.stat-item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   EVENT VIDEO SECTION
   ============================================ */

.event-video-section {
    margin: 40px 0;
    padding: 30px;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e0f2f1;
}

.event-video-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */

.event-speakers-section {
    margin: 40px 0;
}

.event-speakers-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.speaker-card {
    background: #fff;
    border: 2px solid #e0f2f1;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 77, 64, 0.15);
    border-color: var(--primary-color);
}

.speaker-card.keynote {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
}

.speaker-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0f2f1;
}

.speaker-card.keynote .speaker-photo img {
    border-color: var(--primary-color);
}

.keynote-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.speaker-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.speaker-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.speaker-org {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 10px 0;
}

.speaker-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 10px 0 0 0;
}

/* ============================================
   AGENDA SECTION
   ============================================ */

.event-agenda-section {
    margin: 40px 0;
}

.event-agenda-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agenda-timeline {
    position: relative;
    padding-left: 40px;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0f2f1;
}

.agenda-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e0f2f1;
}

.agenda-time {
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.agenda-content {
    flex: 1;
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.agenda-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.agenda-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.agenda-speaker {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   SESSIONS SECTION
   ============================================ */

.event-sessions-section {
    margin: 40px 0;
}

.event-sessions-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sessions-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.session-item {
    background: #fff;
    border: 2px solid #e0f2f1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.session-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 77, 64, 0.1);
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #f7fafc;
    transition: all 0.3s ease;
}

.session-header:hover {
    background: #e8f5f3;
}

.session-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.session-number {
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
}

.session-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.session-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.session-duration {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.toggle-icon {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.session-item.active .toggle-icon {
    transform: rotate(180deg);
}

.session-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.session-item.active .session-content {
    max-height: 1000px;
    padding: 20px 25px 25px;
}

.session-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.session-topics h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.session-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.session-topics li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.session-topics li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.session-speaker {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0f2f1;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .star-rating label {
        font-size: 24px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-item strong {
        font-size: 18px;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-timeline {
        padding-left: 30px;
    }
    
    .agenda-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .agenda-time {
        min-width: auto;
    }
    
    .session-header {
        padding: 15px;
    }
    
    .session-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .session-title h4 {
        font-size: 16px;
    }
}
