
:root {
    --primary-color: #1e40af;
    --success-color: #16a34a;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --border-radius: 8px;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    height: 100dvh; /* Mejor soporte para móviles */
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Status Bar - Responsive */
.status-bar {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: 32px;
}

/* Header - Responsive */
.app-header {
    background: white;
    padding: 8px 16px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.terminal-info {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.balance-info {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-color);
    flex-shrink: 0;
}

/* Main Layout - Adaptive */
.main-container {
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    overflow: hidden;
    position: relative;
}

/* Connection Status - Posicionado correctamente */
.connection-status {
    position: fixed;
    top: 90px;
    right: 8px;
    z-index: 1000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.connection-status.connected {
    background: var(--success-color);
    color: white;
}

.connection-status.disconnected {
    background: var(--danger-color);
    color: white;
}

/* Jugadas Grid - Flex para ocupar espacio restante */
.jugadas-grid {
    background: white;
    border-radius: var(--border-radius);
    padding: 8px;
    flex: 1; /* Ocupa todo el espacio disponible */
    min-height: 120px; /* Altura mínima */
    overflow-y: auto;
    box-shadow: var(--shadow);
    margin-bottom: auto; /* Empuja los controles hacia abajo */
}

.jugada-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px;
}

.jugada-item:last-child {
    border-bottom: none;
}

.jugada-item.border-info {
    border-left: 3px solid #0ea5e9;
}

.jugada-numbers {
    font-weight: 700;
    color: var(--primary-color);
}

.jugada-amount {
    font-weight: 600;
    color: var(--success-color);
}

.delete-jugada {
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.empty-jugadas {
    text-align: center;
    color: #666;
    padding: 20px;
    font-size: 12px;
}

/* Controls Section - Agrupados en la parte inferior */
.controls-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0; /* No se comprime */
    margin-top: auto; /* Se mantiene en la parte inferior */
}

/* Lottery Selector */
.lottery-selector {
    background: white;
    border-radius: var(--border-radius);
    padding: 8px;
    box-shadow: var(--shadow);
}

.lottery-btn {
    width: 100%;
    padding: 8px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    background: white;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lottery-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Play Type Selector */
.play-type-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 2px;
    box-shadow: var(--shadow);
}

.play-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.play-type-btn {
    padding: 6px;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    background: white;
    font-size: 10px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
}

.play-type-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Input Section - Corregido overflow */
.input-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 8px;
    box-shadow: var(--shadow);
}

.input-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
}

.number-input, .amount-input {
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.number-input {
    color: var(--primary-color);
}

.amount-input {
    color: var(--success-color);
}

.focused-input {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

/* Keypad */
.keypad-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.keypad-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.key-btn {
    border: none;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    transition: all 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.key-btn:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.key-btn.primary {
    background: var(--primary-color);
    color: white;
}

.key-btn.success {
    background: var(--success-color);
    color: white;
}

.key-btn.danger {
    background: var(--danger-color);
    color: white;
}

.key-btn.warning {
    background: var(--warning-color);
    color: white;
}

.key-btn.wide {
    grid-column: span 2;
}

/* Total Section - Parte del grupo inferior */
.total-section {
    background: #fdfdfd;
    color: white;
    border-radius: var(--border-radius);
    padding: 12px;
    text-align: center;
    flex-shrink: 0; /* No se comprime */
}

.process-main-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    background: white;
    color: var(--success-color);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}

.process-main-btn:disabled {
    background: #1e40af;
    color: #ffffff;
}

/* Modals */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 12px 16px;
}

.modal-title {
    font-size: 16px;
    font-weight: 600;
}

.lottery-type-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    background: white;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
    transition: all 0.2s;
}

.lottery-type-btn:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
}

.lottery-item-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.lottery-item-modal:last-child {
    border-bottom: none;
}

.lottery-name {
    font-weight: 600;
    font-size: 14px;
}

.lottery-time {
    font-size: 12px;
    color: #666;
}

.countdown {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--warning-color);
    color: white;
    font-weight: 600;
}

/* Loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Toast Container - Posicionado correctamente */
.toast-container {
    position: fixed;
    top: 90px;
    left: 8px;
    right: 8px;
    z-index: 9999;
}

.custom-toast {
    background: white;
    border-radius: var(--border-radius);
    padding: 12px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--success-color);
    animation: slideIn 0.3s ease-out;
}

.custom-toast.error {
    border-left-color: var(--danger-color);
}

.custom-toast.warning {
    border-left-color: var(--warning-color);
}

@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Validation Error */
.validation-error {
    color: var(--danger-color);
    font-size: 11px;
    margin-top: 4px;
}

/* CSS adicional para mejorar Terminal TPV */
.play-type-btn {
    padding: 6px;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px;
    background: white !important;
    font-size: 10px;
    font-weight: 600;
    color: #666 !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.play-type-btn:hover {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
    color: #1e40af !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2) !important;
}

.play-type-btn.active {
    border-color: #1e40af !important;
    background: #1e40af !important;
    color: white !important;
    box-shadow: 0 3px 12px rgba(30, 64, 175, 0.4) !important;
    transform: translateY(-1px);
}

.play-type-btn.active:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.5) !important;
}

.play-type-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
}

.lottery-btn.active {
    border-color: #1e40af !important;
    background: #1e40af !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3) !important;
}

.jugada-item {
    transition: all 0.2s ease;
    border-radius: 6px;
    margin-bottom: 4px;
}

.jugada-item:hover {
    background: #f8fafc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jugada-numbers {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.ticket-modal .modal-dialog {
    max-width: 500px;
}

.ticket-receipt {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.lottery-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 8px;
}

.bet-line {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 4px;
    margin-bottom: 2px;
}

.bet-line:nth-child(even) {
    background: rgba(241, 245, 249, 0.5);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(30, 64, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
    }
}

.jugada-item {
    animation: slideInFromRight 0.3s ease-out;
}

.play-type-btn.active {
    animation: pulse 1s;
}

.loading-overlay {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.6) !important;
}

.spinner {
    background: linear-gradient(45deg, transparent 30%, white 50%, transparent 70%);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.custom-toast {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-toast.error {
    background: rgba(254, 242, 242, 0.95) !important;
    border-left-color: #dc2626;
}

.custom-toast.warning {
    background: rgba(255, 251, 235, 0.95) !important;
    border-left-color: #f59e0b;
}

@media print {
    body * {
        visibility: hidden;
    }

    .ticket-receipt,
    .ticket-receipt * {
        visibility: visible;
    }

    .ticket-receipt {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        border: 2px solid #000 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #000 !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .lottery-header {
        background: #f5f5f5 !important;
        border: 1px solid #000 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    .bet-numbers {
        color: #000 !important;
    }

    .bet-amount {
        color: #000 !important;
    }

    .main-total {
        background: #e5e5e5 !important;
        border: 1px solid #000 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    .change-line {
        background: #f0f0f0 !important;
        border: 1px solid #000 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}

.play-type-btn:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

.play-type-btn.active:focus {
    outline-color: #60a5fa;
}

.play-type-btn.active {
    background: #1e40af !important;
    color: #ffffff !important;
}

.text-shadow {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
}

/* Estilos para botones del header */
.header-btn {
    background: transparent;
    border: none;
    color: #1e40af;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-1px);
}

.header-btn .icon-md {
    font-size: 18px;
}

/* Estilos para modal de búsqueda de clientes */
.customer-search-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    position: relative;
}

.customer-search-item:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.customer-search-item.selected {
    border-color: var(--primary-color);
    background: #eff6ff;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.customer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.customer-details {
    font-size: 12px;
    color: #666;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.customer-detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.customer-detail-item i {
    color: var(--primary-color);
}

.customer-type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.customer-type-person {
    background: #dcfce7;
    color: #166534;
}

.customer-type-company {
    background: #dbeafe;
    color: #1e40af;
}

.customer-search-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.customer-search-empty i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.selected-customer-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

#customer-search-results {
    max-height: 400px;
    overflow-y: auto;
}

/* Indicador de cliente seleccionado en el terminal */
.customer-indicator {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid #16a34a;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 8px;
    display: none;
}

.customer-indicator.active {
    display: block;
}

.customer-indicator .customer-info {
    font-weight: 600;
    color: #166534;
    margin-bottom: 2px;
}

.customer-indicator .customer-meta {
    font-size: 11px;
    color: #065f46;
}

/* RESPONSIVE FIXES - Adaptive Layout */
@media (max-width: 480px) {
    .status-bar {
        padding: 4px 12px;
        height: 28px;
        font-size: 12px;
    }

    .app-header {
        padding: 6px 12px;
        height: 44px;
    }

    .terminal-info {
        font-size: 13px;
    }

    .balance-info {
        font-size: 13px;
    }

    .main-container {
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        padding: 6px;
        gap: 6px;
    }

    .connection-status {
        top: 76px;
        right: 6px;
        font-size: 10px;
        padding: 3px 6px;
    }

    .toast-container {
        top: 76px;
        left: 6px;
        right: 6px;
    }

    .jugadas-grid {
        min-height: 100px; /* Altura mínima reducida en móviles */
        padding: 6px;
    }

    .jugada-item {
        font-size: 11px;
        padding: 3px 6px;
    }

    .delete-jugada {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .play-type-btn {
        font-size: 9px;
        padding: 4px 2px;
        min-height: 32px;
    }

    .number-input, .amount-input {
        font-size: 13px;
        padding: 6px 8px;
        min-height: 36px;
    }

    .lottery-btn {
        font-size: 11px;
        padding: 6px 8px;
        min-height: 36px;
    }

    .key-btn {
        font-size: 16px;
        min-height: 40px;
    }

    .key-btn.wide {
        font-size: 14px;
    }

    .process-main-btn {
        font-size: 14px;
        padding: 10px;
        min-height: 44px;
    }

    .keypad-grid {
        gap: 6px;
    }

    .modal-content {
        margin: 10px;
    }

    .modal-header {
        padding: 10px 14px;
    }

    .modal-title {
        font-size: 14px;
    }

    .modal-body {
        max-height: 60vh;
        overflow-y: auto;
    }
}

@media (max-width: 360px) {
    .play-type-btn {
        font-size: 8px;
        padding: 3px 1px;
        min-height: 28px;
    }

    .key-btn {
        font-size: 14px;
        min-height: 36px;
    }

    .keypad-grid {
        gap: 4px;
    }

    .jugadas-grid {
        min-height: 80px; /* Altura mínima aún menor en pantallas muy pequeñas */
    }
}

/* Layout adaptativo para pantallas grandes */
@media (min-height: 800px) {
    .jugadas-grid {
        min-height: 200px; /* Más espacio en pantallas altas */
    }
}

@media (min-height: 900px) {
    .jugadas-grid {
        min-height: 250px; /* Aún más espacio en pantallas muy altas */
    }
}

/* Layout para tablets y pantallas medianas */
@media (min-width: 481px) and (max-width: 768px) {
    .jugadas-grid {
        min-height: 180px;
    }

    .key-btn {
        min-height: 50px;
        font-size: 20px;
    }

    .play-type-btn {
        font-size: 12px;
        min-height: 38px;
    }
}

/* Layout para pantallas muy grandes */
@media (min-width: 769px) {
    .main-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .jugadas-grid {
        min-height: 220px;
    }

    .key-btn {
        min-height: 55px;
        font-size: 22px;
    }
}

/* Prevenir zoom en inputs en iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .number-input,
    .amount-input {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
        .number-input,
        .amount-input {
            font-size: 16px;
        }
    }
}
 

/* Estilos específicos para el modal de crear cliente */
#createCustomerModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#createCustomerModal .form-control:focus,
#createCustomerModal .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}

#createCustomerModal .btn-check:checked + .btn {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
}

#createCustomerModal .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

#createCustomerModal .form-text {
    font-size: 0.75rem;
    color: #6b7280;
}

#createCustomerModal .invalid-feedback {
    font-size: 0.75rem;
}

#createCustomerModal .alert {
    border-radius: 8px;
    border: none;
    font-size: 0.875rem;
}

#createCustomerModal .alert-info {
    background-color: #eff6ff;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

#createCustomerModal .alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #22c55e;
}

#createCustomerModal .alert-danger {
    background-color: #fef2f2;
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

/* Animación para cambio de campos */
#person-fields, #company-fields {
    transition: all 0.3s ease;
}

/* Estilo para campos requeridos */
.form-label .text-danger {
    font-size: 0.8rem;
}

/* Mejoras responsivas */
@media (max-width: 768px) {
    #createCustomerModal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    #createCustomerModal .modal-body {
        max-height: 60vh;
        padding: 1rem;
    }
}

/* Loading state para el botón */
#save-customer-btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

#save-customer-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Safe area para dispositivos con notch */
@supports (padding-top: env(safe-area-inset-top)) {
    .status-bar {
        padding-top: max(4px, env(safe-area-inset-top));
    }

    .main-container {
        padding-bottom: max(6px, env(safe-area-inset-bottom));
    }
} 

.box-recommendation {
    animation: fadeIn 0.3s ease-in-out;
}

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

.box-recommendation:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#box-type-recommendation {
    transition: all 0.3s ease;
}