.webform-submission-form {
    background-color: #0b7db9;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.webform-submission-form label {
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px !important;
    display: block;
}

.form-required:after {
    color: #ffcccc;
}

.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form select {
    width: 100% !important;
    box-sizing: border-box;
    border-radius: 50px !important;
    border: 1px solid #fff;
    padding: 8px 15px;
    min-height: 40px;
    outline: none;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}

.webform-submission-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.webform-submission-form .form-type-select,
.webform-submission-form .form-item-staff-size {
    width: 100%;
    flex: 1;
}

.webform-flexbox {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 8px !important;
}

.webform-flexbox > .form-item,
.webform-flexbox > div {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0 !important;
}

.form-item {
    margin-bottom: 8px !important;
}

.form-actions, .webform-actions {
    order: 10;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-submit-tekshot, .webform-button--submit {
    width: auto !important;
    min-width: 250px;
    padding: 10px 30px;
    background-color: #E66245;
    color: #fff !important;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-submit-tekshot:hover, .webform-button--submit:hover {
    background-color: #c94e33;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.form-item-disclaimer {
    order: 20;
    text-align: center;
    margin-top: 0;
}

.webform-submission-form a {
    color: #fff !important;
    text-decoration: underline;
}