/* style.css */
#load-capacity-calculator {
    font-family: 'Catamaran', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    text-align: center;
    padding: 20px;
}

h1 {
    color: #1c1c1c;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: left;
}

select, input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #d13030;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #a82828;
}

#result {
    margin-top: 20px;
    font-weight: bold;
}
.consultation-btn.consultation-btn.consultation-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #d13030;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.consultation-btn.consultation-btn.consultation-btn:hover {
    background-color: #a82828;
}
