/* ===== SCHEDULE PAGE STYLES ===== */

.schedule-body {
    background: #ffffff;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    min-height: 100vh;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.back-link {
    display: inline-block;
    color: #4fc3f7;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-link:hover {
    background: #e0e0e0;
    color: #2196f3;
    border-color: #4fc3f7;
    transform: translateX(-5px);
}

.schedule-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd, #f5f5f5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid #4fc3f7;
}

.schedule-header h1 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #2196f3, #4fc3f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    margin: 0;
    font-weight: 300;
}

.theme-section {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #2196f3;
}

.theme-section h2 {
    margin-top: 0;
    color: #2196f3;
    font-size: 1.8rem;
}

.theme-section p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.theme-section p strong {
    color: #1976d2;
}

/* Day Cards */
.day-card {
    background: #fafafa;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    margin-bottom: 35px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #4fc3f7;
}

.day-header {
    background: linear-gradient(135deg, #4fc3f7, #2196f3);
    padding: 25px 30px;
    border-bottom: 2px solid #2196f3;
}

.day-header h2 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1.8rem;
}

.day-note {
    color: #ffeb3b;
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Session Styling */
.session {
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.session:last-child {
    border-bottom: none;
}

.session-header {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.session-header.morning {
    background: linear-gradient(135deg, #fff3e0, #ffffff);
    border-left: 4px solid #ff9800;
}

.session-header.evening {
    background: linear-gradient(135deg, #f3e5f5, #ffffff);
    border-left: 4px solid #9c27b0;
}

.session-header h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.5rem;
}

.session-header h4 {
    margin: 0;
    color: #666;
    font-weight: 400;
    font-size: 1.2rem;
}

.session-content {
    padding-left: 10px;
}

.session-content h5 {
    color: #2196f3;
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.session-content ul {
    margin: 10px 0;
    padding-left: 25px;
}

.session-content li {
    margin-bottom: 8px;
    color: #444;
    font-size: 1.05rem;
}

.objective,
.topics,
.practical,
.engagement {
    margin-bottom: 20px;
}

.objective p {
    color: #333;
    font-size: 1.1rem;
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #2196f3;
}

/* Code Blocks */
.code-block {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.code-block p {
    margin: 8px 0;
    font-family: 'Courier New', monospace;
}

.code-block code {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.95rem;
}

code {
    background: #e3f2fd;
    color: #1976d2;
    padding: 3px 7px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.command-section {
    background: #f9f9f9;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    border-left: 3px solid #2196f3;
}

.command-section p {
    margin: 5px 0;
    color: #333;
}

.command-section code {
    display: block;
    margin-top: 8px;
    background: #263238;
    color: #4fc3f7;
    padding: 8px 12px;
}

/* Footer */
.schedule-footer {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4fc3f7, #2196f3);
    color: white;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.5);
    background: linear-gradient(135deg, #2196f3, #4fc3f7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .day-header h2 {
        font-size: 1.5rem;
    }

    .session-header h3 {
        font-size: 1.3rem;
    }

    .session-header h4 {
        font-size: 1.1rem;
    }

    .session {
        padding: 20px 15px;
    }

    .day-header {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .schedule-body {
        padding: 10px;
    }

    .schedule-container {
        padding: 10px;
    }

    .schedule-header {
        padding: 20px 15px;
    }

    .schedule-header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}