.card-select {
    display: flex;
    justify-content: center;
}

.card-select .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 40px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: white;
    text-align: center;
    width: 100%;
}

.card-select input {
    display: none;
}

.card-select input:checked + .content {
    border-color: #f78930;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.card-select img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.card-select span {
    font-size: 14px;
    color: #333;
}

.card-select .content:hover {
    border-color: #f78930;
}

.btn-group input[type="radio"] {
    display: none;
}

/* Style the labels to look like buttons */
.btn-group label {
    padding: 10px 20px;
    border: 2px solid #000;
    background-color: #f8f9fa;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Add hover effect */
.btn-group label:hover {
    background-color: #f78930;
    color: #fff;
}

/* Change style when radio is checked */
.btn-group input[type="radio"]:checked + label {
    background-color: #f78930;
    /* Blue background when checked */
    color: white;
    /* White text when checked */
    border-color: #f78930;
    /* Blue border */
}

.contact-field select {
    width: 100%;
    border: none;
    padding-left: 15px;
    transition: 0.3s;
    border-radius: 8px;
    border: 1px solid #777;
    height: calc(3em + 0.75rem + 2px);
}

/* select values style */
.contact-field select option {
    color: #000;
    background: #fff;
    display: flex;
    white-space: pre;
    min-height: 20px;
    padding: 0px 2px 1px;
    font-size: 11px !important;
}

.contact-field label {
    display: unset;
    font-size: unset;
    text-transform: unset;
    margin-bottom: 20px;
    cursor: unset;
}

/* Hide the default file input */
input[type="file"] {
    display: none;
}

/* Custom label styling */
.custom-file-upload {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.upload-label {
    background-color: #f78930;
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.upload-label:hover {
    background-color: #0056b3;
}

/* Style for displaying selected file name */
.file-chosen {
    margin-left: 15px;
    font-size: 14px;
    color: #666;
}

/* Adjust margin for better alignment */
.custom-file-upload input + .upload-label {
    margin-right: 15px;
}

.quote-preview td,
.quote-preview th {
    border-top: 0px solid #eaedff;
    padding-bottom: 10px;
}

.btn {
    background-color: #f78930;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    transition: background-color 0.3s;
}

@media (max-width: 767px) {
    .logo img {
        width: 100.5px !important;
    }
}
