/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #f0f0f0, #d3e0ff);
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Wrapper */
.wrapper {
    max-width: 600px;
    margin: 30px auto;
}

/* Container */
.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading */
h2 {
    color: #333;
    margin-bottom: 15px;
}

/* Input Group */
.input-group {
    margin: 15px 0;
    text-align: left;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: calc(100% - 10px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    margin-top: 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background-color: #0056b3;
}

/* Result */
.result {
    margin-top: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.result h3 {
    color: #007bff;
    font-size: 20px;
}

/* Description */
.description {
    background: white;
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.description h2 {
    color: #444;
    font-size: 18px;
    margin-top: 10px;
}

.description p, .description ul {
    font-size: 14px;
    color: #666;
}

.description ul {
    padding-left: 20px;
}

.description ul li {
    margin-bottom: 5px;
}
