/* Medical Bill Reduction Form Styles */

@media (min-width: 992px) {
    .custom-container {
        padding: 20px 75px !important;
    }
}

@media (min-width: 1400px) {
    .custom-container {
        max-width: 1200px !important;
    }
}

.custom-border-medical {
    border: 1px solid #FFA742 !important;
}

.form-label {
    font-weight: bold;
}

#kt_content.d-flex.flex-column.flex-column-fluid {
    margin-left: 0px;
}

.bottom-border-input {
    border: none;
    border-bottom: 1px solid gray;
    border-radius: 0;
    box-shadow: none;
}

.bottom-border-input:focus {
    box-shadow: none;
    border-color: #FFA742;
}

.file-preview {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    position: relative;
}

.file-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.file-preview button.cancel-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
}

.btn-light-brown {
    background-color: #e0c9a6;
    /* Light brown */
    color: #5a3e1b;
    /* Darker brown for text */
    border-color: #d1b78c;
}

.btn-light-brown:hover {
    background-color: #d1b78c;
    color: #fff;
    border-color: #bda379;
}

.medical-image-container {
    height: 350px;
}

@media (max-width: 767.98px) {
    .medical-image-container {
        height: 160px;
    }
}

/* Medical Bill Reduction Success Page Styles */
body.medical-success-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    margin: 0;
    font-family: Arial, sans-serif;
}

.medical-success-container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 20px;
}

.medical-success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
}

.medical-success-container h1 {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: bold;
}

.medical-success-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.medical-success-message {
    font-size: 18px;
    color: #6c757d;
    margin: 20px 0;
    line-height: 1.6;
}

.medical-token-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #28a745;
}

.medical-token-info strong {
    color: #333;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.medical-token-info span {
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
}

.medical-button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.medical-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.medical-btn-primary {
    background: #007bff;
    color: white;
}

.medical-btn-primary:hover {
    background: #0056b3;
    color: white;
}

.medical-btn-secondary {
    background: #6c757d;
    color: white;
}

.medical-btn-secondary:hover {
    background: #545b62;
    color: white;
}

@media (max-width: 768px) {
    .medical-success-container {
        padding: 30px 20px;
    }

    .medical-success-container h1 {
        font-size: 24px;
    }

    .medical-success-container h2 {
        font-size: 20px;
    }

    .medical-button-group {
        flex-direction: column;
    }

    .medical-btn {
        width: 100%;
    }
}
