.header-title {
    color: #0E0E0E;
    text-align: center;
    font-weight: 500;
    line-height: 3.675rem; /* 58.8px */
}

.description {
    color: #000;
    text-align: center;
    font-weight: 400;
    line-height: 2.188rem; /* 60px */
    /* 140% of font size */
    margin: 12px auto;
}

.selected-card {
    margin-bottom: 52px;
    /* Add 52px gap */
}

.selected-card .card-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px; /* Increased border radius for more rounded corners */
    height: 290px;
    overflow: hidden;
    background: #f7f6fb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 100%;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 14px; /* Add border radius to image too */
    transition: transform 0.3s ease;
}

.custom-selection {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start;
    margin-bottom: 20px;
}

.custom-selection h5 {
    font-size: 0.812rem; /* 13px */
    margin-bottom: 10px; /* Add space between text and images */
    white-space: nowrap; /* Ensure text stays in one line */
}

.custom-selection .d-flex {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    overflow-x: auto;
}

.style-card {
    width: 64px;
    height: 41px;
    background: #f7f6fb;
    border-radius: 1px;
    cursor: pointer;
    margin-right: 5px;
    border: 1px solid transparent;
}

.style-card.active {
    border: 1px solid #0040c3;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.form-group label {
    font-weight: 500;
}

.form-control {
    border-radius: 6px;
    height: 40px;
}

.form-group .required::after {
    content: ' *';
    color: red;
}

textarea.form-textarea {
    height: auto;
    min-height: 100px;
    border: 1px solid #ced4da;
    padding: .375rem .75rem;
    border-radius: 6px;
    resize: none;
    outline: none;
}

textarea.form-textarea:focus {
    outline: none;
    box-shadow: none;
}

/* Hide number input spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    /* Standard property */
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
    /* Standard property */
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
    width: 100% !important;
}

.modal-backdrop {
    width: 100vw !important;
    height: 100vh !important;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

html {
    overflow-y: scroll !important;
}

.modal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.modal-dialog {
    margin: 1.75rem auto !important;
}