/* ✅ FINAL VERSION of style.css for CLV Calculator */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9fb;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

h1, h2 {
    color: #4c3c7a;
    margin-top: 0;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button {
    background-color: #4c3c7a;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #372a59;
}

.result {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f4f8;
    border-left: 6px solid #4c3c7a;
    border-radius: 6px;
}

.result p {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

footer {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-top: 40px;
}