.simulator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(16, 63, 211, 0.1);
    margin-bottom: 30px;
}

.simulator-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E9F3FF;
}

h2.simulator-title {
    color: #0B1956;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.simulator-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #F8FBFF;
    border-radius: 8px;
    border-left: 4px solid #103FD3;
}

.form-section h3 {
    color: #0B1956;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: #0B1956;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

input, select {
    padding: 12px 15px;
    border: 2px solid #E1E8F5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus, select:focus {
    outline: none;
    border-color: #103FD3;
    box-shadow: 0 0 0 3px rgba(16, 63, 211, 0.1);
}

.calculate-btn {
    background: #F67E3C;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 20px 0;
}

.calculate-btn:hover {
    background: #E56A2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 126, 60, 0.3);
}

.results-container {
    display: none;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #103FD3, #2B5CE6);
    border-radius: 12px;
    color: white;
}

.results-container.show {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.results-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color:white;
}

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

.formula-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.formula-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.formula-details {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.reimbursement-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFE4A3;
    margin-bottom: 5px;
}

.remaining-cost {
    font-size: 0.9rem;
    opacity: 0.8;
}

.best-deal {
    border: 2px solid #FFE4A3;
    background: rgba(255, 228, 163, 0.2);
}

.info-section {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.animal-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.animal-icon {
    width: 40px;
    height: 40px;
    background: #103FD3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.animal-icon:hover {
    transform: scale(1.1);
    background: #0B1956;
}

@media (max-width: 768px) {
    .simulator-container {
        margin: 10px;
        padding: 15px;
    }
    
    h2.simulator-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.highlight {
    background: linear-gradient(135deg, #FFE4A3, #F67E3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}