/* ============================================
   BASE STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    color: #333;
}

.page-title {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 36px;
}

.page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-accent {
    background: #ff9800;
    color: white;
}

.btn-accent:hover {
    background: #f57c00;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* ============================================
   ALERTS & NOTIFICATIONS
   ============================================ */

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #ffebee;
    color: #f44336;
    border-left: 4px solid #f44336;
}

.alert-success {
    background: #e8f5e9;
    color: #4caf50;
    border-left: 4px solid #4caf50;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
}

.nav-logo {
    font-size: 26px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-user-group {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid #e8e8e8;
}

.nav-user-group .nav-link {
    padding: 8px 12px;
}

.nav-admin {
    color: #ff9800;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: #f0f0f0;
    color: #667eea;
}

.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.logout {
    color: #f44336;
}

/* ============================================
   AUTHENTICATION PAGES
   ============================================ */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.auth-card .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: #667eea;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* ============================================
   DASHBOARD
   ============================================ */

.dashboard {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 40px 0;
}

.welcome-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-section h1 {
    color: #333;
    margin-bottom: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
}

.subjects-section,
.recommendations-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.subjects-section h2,
.recommendations-section h2 {
    margin-bottom: 10px;
    color: #333;
}

.section-hint {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

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

.subject-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid;
}

.subject-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.subject-name {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 8px;
    transition: width 0.3s;
}

.subject-stats {
    font-size: 14px;
    color: #666;
}

.prof-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s;
}

.prof-card:hover {
    transform: translateY(-3px);
}

.prof-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.prof-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.prof-details {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ============================================
   TESTING PAGE
   ============================================ */

.testing-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 40px 0;
}

.subjects-selector h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.subject-select-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.subject-select-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.progress-info {
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.task-card,
.result-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.task-subject {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.task-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.task-answer {
    display: flex;
    gap: 15px;
}

.task-answer input {
    flex: 1;
}

.result-card {
    text-align: center;
}

.result-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.result-icon.correct {
    color: #4caf50;
}

.result-icon.incorrect {
    color: #f44336;
}

.explanation {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

/* ============================================
   PROFESSIONS PAGE
   ============================================ */

.professions-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 40px 0;
}

.profession-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profession-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profession-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.profession-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 22px;
}

.profession-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.profession-meta {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.salary {
    display: block;
    color: #4caf50;
    font-weight: bold;
    margin-bottom: 5px;
}

.demand {
    display: block;
    color: #ff9800;
    font-size: 14px;
}

/* ============================================
   PROFESSION DETAIL PAGE
   ============================================ */

.profession-detail-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 40px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.detail-header {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-header h1 {
    color: #333;
    margin: 0;
    font-size: 32px;
}

.demand-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.detail-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
}

.detail-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-section h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 24px;
}

.salary-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.salary-min, .salary-max {
    font-size: 18px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
    flex: 1;
}

.salary-min strong {
    color: #ff9800;
}

.salary-max strong {
    color: #4caf50;
}

.subjects-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subject-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.2s;
}

.subject-item:hover {
    transform: translateX(5px);
}

.subject-name {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.subject-importance {
    color: #ff9800;
}

.universities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.uni-item {
    padding: 12px;
    background: #f5f5f5;
    border-radius: 10px;
    color: #333;
    border-left: 4px solid #667eea;
}

/* ============================================
   PROFILE PAGE
   ============================================ */

.profile-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 40px 0;
}

.profile-card, .stats-card, .history-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    margin: 0 0 5px 0;
    color: #333;
}

.profile-info p {
    margin: 5px 0;
    color: #666;
}

.info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-label {
    width: 150px;
    font-weight: bold;
    color: #555;
}

.info-value {
    flex: 1;
    color: #333;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.history-list {
    margin-top: 20px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.history-item:hover {
    background: #f9f9f9;
}

.history-date {
    min-width: 120px;
    color: #999;
    font-size: 14px;
}

.history-info {
    flex: 1;
    margin: 0 20px;
}

.history-subject {
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.history-text {
    color: #666;
    font-size: 14px;
}

.history-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.history-status.correct {
    background: #e8f5e9;
    color: #4caf50;
}

.history-status.incorrect {
    background: #ffebee;
    color: #f44336;
}

.no-history {
    text-align: center;
    padding: 60px;
}

.no-history p {
    margin-bottom: 20px;
    color: #666;
}

.no-data {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
    color: #666;
}

/* ============================================
   CHAT PAGE
   ============================================ */

.chat-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 40px 0;
}

.chat-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.chat-header h2 {
    margin-bottom: 5px;
    color: white;
}

.chat-header p {
    opacity: 0.9;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.message.system {
    justify-content: center;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 10px;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
}

.message.user .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.message.bot .message-content {
    background: #f0f0f0;
    color: #333;
}

.message.system .message-content {
    background: #fff3e0;
    color: #ff9800;
    max-width: 90%;
    text-align: center;
}

.message-username {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    opacity: 0.8;
}

.message-text {
    line-height: 1.4;
    word-wrap: break-word;
}

.message-text.system {
    font-size: 14px;
}

.message-time {
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.7;
}

.chat-input-area {
    display: flex;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    gap: 10px;
    background: white;
}

.chat-input-area input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.chat-input-area input:focus {
    outline: none;
    border-color: #667eea;
}

/* ============================================
   LOADING STATE
   ============================================ */

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 18px;
    color: #666;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

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

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .stats-grid,
    .subjects-grid,
    .professions-grid {
        grid-template-columns: 1fr;
    }
    
    .task-answer {
        flex-direction: column;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .chat-input-area {
        padding: 15px;
    }
    
    .chat-input-area input {
        font-size: 14px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .history-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .history-date {
        min-width: auto;
    }
    
    .history-info {
        margin: 10px 0;
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .salary-info {
        flex-direction: column;
    }
    
    .subject-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .stat-card,
    .prof-card,
    .subject-card {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .auth-card {
        padding: 25px;
    }
}


/* ============================================
   HOLLAND TEST STYLES
   ============================================ */

/* Карточки вопросов */
.holland-question-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.holland-question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.question-number {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

.question-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
}

/* Группа радиокнопок */
.holland-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.holland-radio-group label {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.holland-radio-group label:hover {
    background: #e8eaf6;
    transform: translateY(-2px);
}

.holland-radio-group input[type="radio"] {
    margin-right: 8px;
}

/* Прогресс теста */
.holland-progress {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    position: sticky;
    top: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.holland-progress-bar {
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
}

.holland-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Карточки типов личности */
.holland-type-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.holland-type-card:hover {
    transform: scale(1.02);
}

.holland-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.holland-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.holland-score {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Список профессий */
.holland-professions-list {
    list-style: none;
    padding: 0;
}

.holland-professions-list li {
    padding: 12px 15px;
    margin: 10px 0;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 3px solid #667eea;
}

.holland-professions-list li:hover {
    transform: translateX(10px);
    background: #e8eaf6;
}

/* Контейнер для графика */
.holland-chart-container {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Результаты теста */
.holland-results-container {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Таблица истории */
.holland-history-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.holland-history-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
}

.holland-history-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.holland-history-table tr:hover {
    background: #f8f9fa;
}

.holland-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.holland-badge-r { background: #FF6B6B; color: white; }
.holland-badge-i { background: #4ECDC4; color: white; }
.holland-badge-a { background: #45B7D1; color: white; }
.holland-badge-s { background: #96CEB4; color: white; }
.holland-badge-e { background: #FFEAA7; color: #333; }
.holland-badge-c { background: #DDA0DD; color: white; }

@media (max-width: 768px) {
    .holland-radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .holland-radio-group label {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .holland-progress {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    
    .holland-history-table {
        display: block;
        overflow-x: auto;
    }
}