/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    margin: 20px 0;
}

.fsw-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fsw-section {
    margin-bottom: 30px;
}

.fsw-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #34495e;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

label {
    display: block;
    font-size: 16px;
    margin: 10px 0;
}

select {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    margin-bottom: 15px;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 10px;
}

.fsw-points-display {
    margin-top: 5px;
    font-weight: bold;
    color: #27ae60;
}

.fsw-btn-calculate {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 30px auto;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    background-color: #b61b28;
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.fsw-btn-calculate:hover {
    background-color: #3498db;
}

.fsw-btn-calculate:focus,
.fsw-btn-calculate:active {
    outline: 2px solid #1e5b87;
    background-color: #1e5b87;
}

.fsw-result {
    background-color: #fff;
    padding: 30px;
    margin-top: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adaptability Section - Corrected Checkbox Alignment */
.fsw-adaptability {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.fsw-adaptability label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.fsw-adaptability input[type="checkbox"] {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .fsw-container {
        padding: 20px;
    }

    .fsw-section h2 {
        font-size: 18px;
    }

    select {
        font-size: 14px;
        padding: 8px;
    }

    input[type="radio"],
    input[type="checkbox"] {
        font-size: 14px;
    }

    .fsw-btn-calculate {
        font-size: 16px;
        padding: 12px;
    }

    .fsw-adaptability {
        flex-direction: column;
    }
}
