/* Custom styles for University Timetable Scheduler Web UI */

/* Navigation active state */
.nav-link-active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* JSON syntax highlighting */
.json-key {
    color: #0066cc;
}

.json-value {
    color: #006600;
}

.json-string {
    color: #cc6600;
}

/* Schedule visualization */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    text-align: center;
}

.schedule-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.schedule-cell {
    min-height: 80px;
    background-color: #f9fafb;
    vertical-align: top;
}

.schedule-item {
    padding: 6px;
    margin: 2px 0;
    border-radius: 6px;
    font-size: 0.85em;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.schedule-item .small {
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Note: @apply directives removed as we're using Tailwind via CDN */
