/* Course page styles */ .container { max-width: 1000px; } .nav-links { text-align: center; margin-bottom: 20px; } .nav-links a { margin: 0 15px; color: #007bff; text-decoration: none; font-weight: bold; } .nav-links a:hover { text-decoration: underline; } .controls { text-align: right; margin-bottom: 20px; } .btn { margin-left: 10px; } .search-container { margin-bottom: 20px; text-align: center; } .search-input { width: 100%; max-width: 400px; padding: 10px 15px; font-size: 16px; border: 2px solid #ddd; border-radius: 4px; outline: none; transition: border-color 0.2s; } .search-input:focus { border-color: #007bff; } .search-results-info { text-align: center; margin: 10px 0; color: #666; font-size: 14px; } .layouts-container { padding: 15px; } .layout-item { padding: 10px; margin: 5px 0; background-color: white; border-radius: 4px; border: 1px solid #dee2e6; display: flex; justify-content: space-between; align-items: center; } .layout-name { font-weight: bold; color: #333; } .layout-par { color: #007bff; font-weight: bold; } .no-layouts { text-align: center; color: #999; font-style: italic; padding: 20px; } .inactive-layouts-accordion { margin-top: 15px; border: 1px solid #dee2e6; border-radius: 4px; background-color: #f8f9fa; } .accordion-header { padding: 12px 15px; cursor: pointer; user-select: none; display: flex; justify-content: space-between; align-items: center; background-color: #e9ecef; border-radius: 4px; transition: background-color 0.2s; } .accordion-header:hover { background-color: #dee2e6; } .accordion-header-text { font-weight: 600; color: #6c757d; font-size: 14px; } .accordion-icon { transition: transform 0.3s; color: #6c757d; } .accordion-icon.expanded { transform: rotate(180deg); } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 10px; } .accordion-content.expanded { max-height: 2000px; padding: 10px; transition: max-height 0.5s ease-in; } .layout-item.inactive { opacity: 0.7; }