/* General Styles */
body {
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    padding: 20px;
}

/* Form Section */
.form-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.form-section {
    flex: 2;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

select, input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Slider */
.slider-wrapper {
    position: relative;
    width: 100%;
}

#percentage-slider {
    width: 100%;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

#slider-value {
    font-weight: bold;
    margin-top: 5px;
}

/* Buttons */
.adddisbtn, .claim-button {
    width: 100%;
    background: #F12139;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.claim-button {
    margin-top: 20px;
}

.adddisbtn:hover, .claim-button:hover {
    background: #c9302c;
}

/* Input Number with Increment/Decrement */
.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
}

.input-wrapper button {
    background: #022144;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.input-wrapper button:hover {
    background: #c9302c;
}

.input-wrapper input {
    text-align: center;
    border: none;
    width: 50px;
}

/* Radio Buttons */
.radio-btn input {
    display: none;
}

.radio-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
}

.radio-btn.active {
    background: #F12139;
    color: white;
}

/* Summary Section */
.summary-section {
    flex: 1;
    background: #F5F5F5;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

.amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #022144;
}

.payment-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.toggle-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.toggle-btn.active {
    background: #F12139;
    color: white;
}