/* ===== CSS переменные ===== */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ===== Общие стили ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

/* ===== Сетка залов ===== */
.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .halls-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== Карточки залов ===== */
.hall-card {
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: white;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.hall-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hall-card.selected {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
    transform: scale(1.02);
}

.card-image-container {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.features-overlay {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 70%;
}

.capacity-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(0,123,255,0.9);
    color: white;
    flex-shrink: 0;
}

.hall-photo {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hall-photo.grayscale {
    filter: grayscale(100%) brightness(0.8);
}

.hall-card:hover .hall-photo {
    transform: scale(1.05);
}

.hall-card.selected .hall-photo {
    filter: none;
}

.features-overlay .feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--secondary-color);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    cursor: help;
}

.features-overlay .feature-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ===== Секция бронирования ===== */
.booking-section {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.hall-card.selected .booking-section {
    border-left-color: var(--primary-color);
}

/* ===== Индикатор шагов ===== */
.steps-progress-container {
    position: relative;
    width: 100%;
    margin: 30px 0 40px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
}

.steps-progress-bar {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #e9ecef;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

.steps-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    transition: width 0.6s ease;
    border-radius: 2px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    border: 3px solid #e9ecef;
    background: white;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
}

.step-indicator.active .step-circle {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.step-indicator.completed .step-circle {
    border-color: var(--success-color);
    background: var(--success-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    max-width: 120px;
    line-height: 1.4;
}

.step-indicator.active .step-label {
    color: var(--primary-color);
}

.step-indicator.completed .step-label {
    color: var(--success-color);
}

/* ===== Формы ===== */
.form-floating {
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    outline: none;
}

.phone-input-container {
    position: relative;
}

.phone-input-container .form-control {
    padding-left: 80px;
}

.phone-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-weight: 500;
    z-index: 3;
    pointer-events: none;
}

/* ===== Слайдер диапазона ===== */
.range-container {
    padding: 15px 0;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.range-value {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 10px 0;
    padding: 8px 16px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
}

.form-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ===== Информация о дате ===== */
.date-info {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    margin-top: 8px;
    border-left: 4px solid var(--primary-color);
}

.date-info small {
    color: var(--secondary-color);
}

/* ===== Предпросмотр зала ===== */
.hall-preview {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

.hall-preview-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hall-preview-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.hall-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-preview-info {
    flex: 1;
}

.hall-preview-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hall-preview-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.hall-preview-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* ===== Навигация по шагам ===== */
.step-navigation {
    display: none;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.step-navigation.active {
    display: flex;
}

.current-step-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== Контакты менеджеров - ИСПРАВЛЕННЫЕ СТИЛИ ===== */
.manager-contacts {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.manager-contacts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.manager-contacts-toggle {
    background: #007bff;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.manager-contacts-toggle:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.manager-contacts-content {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.manager-contact-group {
    margin-bottom: 20px;
}

.manager-contact-group:last-child {
    margin-bottom: 0;
}

.manager-number {
    margin-bottom: 15px;
}

.manager-number .badge {
    font-size: 0.8rem;
    padding: 0.5em 0.8em;
}

.general-info-header {
    margin-bottom: 15px;
}

.general-info-header .badge {
    font-size: 0.8rem;
    padding: 0.5em 0.8em;
}

.manager-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.manager-contact-item:hover {
    border-left-color: #007bff;
    background: #e9ecef;
}

.manager-contact-item i {
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.manager-contact-text {
    flex: 1;
}

.manager-contact-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 600;
}

.manager-contact-text div {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #6c757d;
}

.manager-contact-text a {
    color: #007bff !important;
    text-decoration: none;
    transition: var(--transition);
}

.manager-contact-text a:hover {
    color: #0056b3 !important;
    text-decoration: underline;
}

.manager-contact-text small {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
    margin-top: 2px;
}

.manager-divider {
    border-color: #dee2e6 !important;
    margin: 25px 0;
}

/* Цвета иконок */
.manager-contact-item .bi-person-badge {
    color: #e67e22 !important;
}

.manager-contact-item .bi-geo-alt {
    color: #e74c3c !important;
}

.manager-contact-item .bi-telephone {
    color: #27ae60 !important;
}

.manager-contact-item .bi-envelope {
    color: #3498db !important;
}

.manager-contact-item .bi-clock {
    color: #9b59b6 !important;
}

/* ===== QR-код ===== */
.qr-code-container {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.qr-code-container canvas {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    background: white;
    max-width: 100%;
    height: auto;
}

.qr-code-container img {
    max-width: 100%;
    height: auto;
}

/* ===== Модальное окно подтверждения ===== */
.confirmation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.confirmation-modal {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.confirmation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.confirmation-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.confirmation-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.success-icon {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 10px;
}

.confirmation-instructions {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.email-notice {
    background: #d1ecf1;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    color: #0c5460;
}

.confirmation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

#confirmationCodeInput {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 3px;
}

#confirmationCodeInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    outline: none;
}

.code-hint {
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.attempts-counter {
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.confirmation-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.confirmation-buttons .btn {
    flex: 1;
    padding: 12px;
}

.confirmation-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: none;
}

.confirmation-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.confirmation-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.confirmation-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.confirmation-success {
    text-align: center;
    padding: 20px;
}

.confirmation-success .success-animation {
    font-size: 60px;
    margin-bottom: 20px;
}

.confirmation-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: var(--secondary-color);
    text-align: center;
}

/* ===== Загрузочный экран ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.confirmation-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: confirmationSpin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes confirmationSpin {
    to { transform: rotate(360deg); }
}

/* ===== Стили для печати ===== */
@media print {
    .no-print,
    .manager-contacts,
    .steps-container,
    .current-step-info,
    .step-navigation,
    .btn,
    .alert,
    .loading-overlay {
        display: none !important;
    }
    
    .print-content {
        display: block !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }
    
    .card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
        background: white !important;
    }
    
    .text-primary {
        color: #000 !important;
    }
    
    .bg-success {
        background: #f8f9fa !important;
        color: #000 !important;
    }
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    .manager-contacts-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .manager-contacts-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .manager-contact-item {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }
    
    .manager-contact-item i {
        align-self: flex-start;
    }
    
    .hall-preview-content {
        flex-direction: column;
    }
    
    .hall-preview-image {
        width: 100%;
        height: 200px;
    }
    
    .confirmation-buttons {
        flex-direction: column;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .steps-progress-bar {
        left: 40px;
        right: 40px;
    }
    
    .halls-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Утилиты ===== */
.no-print {
    display: block;
}

.print-content {
    display: block;
}

.status-link-section {
    border-left: 4px solid #17a2b8;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.info-item {
    margin-bottom: 1rem;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.info-item label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
    color: #495057;
    font-weight: 600;
}

.info-item div {
    font-size: 1rem;
    word-break: break-word;
    color: #212529;
}

.action-buttons {
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    margin-top: 20px;
}

/* ===== Кнопки ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-1px);
}

.btn-success {
    color: #fff;
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-1px);
}

.btn-danger {
    color: #fff;
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-1px);
}

.btn-warning {
    color: #212529;
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== Карточки ===== */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}

/* ===== Уведомления ===== */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* Дополнительные утилитарные классы */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: #6c757d !important; }
.text-primary { color: var(--primary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-danger { color: var(--danger-color) !important; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Специфические исправления для контрастности */
.manager-contact-text strong {
    color: #2c3e50 !important;
}

.manager-contact-text div {
    color: #34495e !important;
}

.manager-contact-item {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
}

.manager-contact-item:hover {
    background: #e9ecef !important;
    border-left-color: #007bff !important;
}