.enov-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.enov-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

.enov-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.enov-tab-btn {
    padding: 12px 30px;
    background: #f8f8f8;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    transition: all 0.3s;
}

.enov-tab-btn.active {
    background: #0073aa;
    color: white;
}

.enov-tab {
    display: none;
}

.enov-tab.active {
    display: block;
}

.enov-field {
    margin-bottom: 25px;
}

.enov-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.enov-field input[type="text"],
.enov-field input[type="range"],
.enov-field select,
.enov-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.enov-field textarea {
    min-height: 100px;
    resize: vertical;
}

.enov-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.enov-checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

.enov-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.enov-slider-value {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
    color: #0073aa;
}

.enov-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.3s;
}

.enov-submit:hover {
    background: #005a87;
}

.enov-result {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
}

.enov-result h3 {
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.enov-person-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .enov-container {
        padding: 20px;
        margin: 20px;
    }

    .enov-checkbox-group {
        grid-template-columns: 1fr;
    }

    .enov-tabs {
        flex-direction: column;
    }

    .enov-tab-btn {
        border-radius: 8px;
        margin-bottom: 10px;
    }
}