/* Start custom CSS for html, class: .elementor-element-a9fad72 */.points-calculator {
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h5, h6 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.input-form, .competition-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #EC008C;
    outline: none;
}

label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.calculate-button, .reset-button {
    background-color: #EC008C;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.reset-button {
    background-color: #999;
}

.calculate-button:hover, .reset-button:hover {
    opacity: 0.9;
}

.total-points {
    font-size: 24px;
    font-weight: bold;
    color: #EC008C;
    margin-top: 10px;
}/* End custom CSS */