/* General Styling */
/* Bkoodak Custom Font by fontchi.com */
@font-face {
    font-family: 'BKOODAK';
    src: url('fonts/BKOODB.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'BKOODAKB';
    src: url('fonts/BKOODB.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}
body {
   
    font-family: BKOODAKB , Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.header {
    background-color: #000000; /* Set to black */
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.header img {
    max-height: 40px;
    margin-left: 20px;
}

/* Car Image */
.car-image {
    width: 100%;
    height: auto;
}

/* Car Details Section */
.car-details {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.car-details h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    width: 100%;
}

.info-box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    text-align: left;
}

.info-box h3 {
    color: #0060b2;
    font-size: 18px;
}

.info-box p {
    color: #333;
    margin: 5px 0;
}

/* Footer */
.footer {
    text-align: center;
    background-color: #000000; /* Set to black */
    color: white;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .car-details {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        width: 100%;
        margin-bottom: 15px;
    }
}
/* Button Section */
/* Button Section Container */
.button-section {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 900px;
}

/* Button Section Title */
.button-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Button Section */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Individual Buttons */
.image-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18vw;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.image-button img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.image-button p {
    margin-top: 10px;
    font-size: 14px;
}

/* Hover Effect */
.image-button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.image-button:hover img {
    opacity: 0.8;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
    .image-button {
        width: 22vw;
    }
}

@media (max-width: 480px) {
    .image-button {
        width: 40vw;
    }
}
/* OTP Section */
.otp-container {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 400px;
}

.otp-container h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.otp-container input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.otp-container button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.otp-container button:disabled {
    background-color: #999;
}

.hidden {
    display: none;
}

/* Popup Modal */
#popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    display: none;
}

.popup-content p {
    margin: 10px 0;
}

#close-popup {
    background: #d32f2f;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Extra Button */
.extra-button-container {
    text-align: center;
    margin-top: 20px;
}

.extra-button-container button img {
    width: 120px;
    height: auto;
    cursor: pointer;
}
/* OTP Container Buttons - White Background & Dark Red Border */
.otp-container button {
    background-color: white; /* White background */
    color: #8B0000; /* Dark red text */
    border: 2px solid #8B0000; /* Dark red border */
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Set Background Image for Buttons */
.otp-container button::before {
    content: "";
    background: url('assets/images/5.jpg') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2; /* Light effect to blend with text */
    z-index: -1;
    border-radius: 5px;
}

/* Button Hover Effect */
.otp-container button:hover {
    background-color: #8B0000; /* Dark red on hover */
    color: white; /* White text on hover */
}

/* Disabled Button (For OTP Timer) */
.otp-container button:disabled {
    background-color: #ddd;
    border-color: #999;
    color: #777;
    cursor: not-allowed;
}
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.modal-content p {
    margin: 10px 0;
}

#close-modal {
    background: #d32f2f;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* OTP Container */
.otp-container {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 400px;
}

.otp-container h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.otp-container p {
    font-size: 14px;
    color: #555;
}

.otp-container label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.otp-container input {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.otp-container small {
    font-size: 12px;
    color: #888;
}

/* OTP Buttons */
.otp-container button {
    background-color: white;
    color: #8B0000;
    border: 2px solid #8B0000;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Background Image for Buttons */
.otp-container button::before {
    content: "";
    background: url('assets/images/5.jpg') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
    border-radius: 5px;
}

/* Hover Effect */
.otp-container button:hover {
    background-color: #8B0000;
    color: white;
}

/* Disabled Button */
.otp-container button:disabled {
    background-color: #ddd;
    border-color: #999;
    color: #777;
    cursor: not-allowed;
}

/* Additional OTP Information */
.otp-info {
    margin-top: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 12px;
    color: #444;
    text-align: right;
}

/* OTP More Info Button */
#more-info-btn {
    background-color: white;
    color: #8B0000;
    border: 2px solid #8B0000;
    padding: 12px;
    width: 90%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

#more-info-btn:hover {
    background-color: #8B0000;
    color: white;
}

/* More Info Modal */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
}

.modal-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

#close-more-info {
    background: #8B0000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
/* Ensure OTP Container Matches Car Info Container */
.otp-container {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    padding-right: 10px; /* Added right padding */
    padding-left: 10px;  /* Added left padding */
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 900px; /* Same as car info section */
    width: 100%;
}


/* Match the styling of Car Info Section */
.car-details {
    padding: 20px;
    max-width: 900px; /* Ensure both sections have the same width */
    margin: 0 auto; /* Center align */
}

/* Ensure buttons inside OTP Container take full width */
.otp-container button {
    width: 90%; /* Full width for consistency */
}
/* Exclusive Services Section (Similar to Car Details) */
.exclusive-services-container {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 900px; /* Same as car details */
    width: 100%;
}

/* Section Title */
.exclusive-services-container h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Services Button Container */
.exclusive-services {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Individual Service Buttons */
.exclusive-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18vw;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* Service Button Image */
.exclusive-button img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

/* Service Button Hover Effect */
.exclusive-button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Disabled Button (Grayed Out) */
.exclusive-button:disabled {
    background: #ddd;
    color: #777;
    cursor: not-allowed;
    box-shadow: none;
}

.exclusive-button:disabled img {
    opacity: 0.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .exclusive-button {
        width: 22vw;
    }
}

@media (max-width: 480px) {
    .exclusive-button {
        width: 40vw;
    }
}
/* Send OTP Button Styling with Image */
#send-otp {
    background-color: white; /* White background */
    color: #8B0000; /* Dark red text */
    border: 2px solid #8B0000; /* Dark red border */
    padding: 12px;
    width: 100%;
    height: 50px; /* Adjust button height */
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between image and text */
}

/* Send OTP Button Image */
#send-otp::before {
    content: "";
    background: url('/assets/images/sendotp.jpg') no-repeat center center;
    background-size: contain;
    width: 40px; /* Set the width of the image */
    height: 90%; /* Resize image to 90% of button height */
    display: inline-block;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    z-index: 1000;
}

.modal-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.close-modal {
    background: #8B0000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* Overlay Background */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
/* Apply Koodak font */
body {
    font-family: 'BKOODAK', Arial, sans-serif;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    background: #003366;
    padding: 10px;
    border-radius: 5px;
}

.step-btn {
    flex: 1;
    color: white;
    background: none;
    border: none;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

/* Alert Messages */
.alert-text {
    background: #ffc107;
    color: black;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.warning-text {
    color: red;
    text-align: center;
    font-weight: bold;
}

.highlight {
    color: red;
    font-weight: bold;
}

/* Form Layout */
.input-group {
    margin-bottom: 10px;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 20px; /* Fix size */
    height: 20px;
    border: 2px solid #004080;
    border-radius: 50%;
    outline: none;
    position: relative;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked {
    background-color: #004080;
}

.radio-group label {
    font-weight: normal;
    margin-left: 5px;
    cursor: pointer;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Buttons */
.form-buttons {
    text-align: center;
}

.back-btn {
    background: pink;
    color: black;
    padding: 10px;
    border: 1px solid #d32f2f;
    border-radius: 5px;
    cursor: pointer;
}

.next-btn {
    background: #337ab7;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn {
    background: red;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
@font-face {
    font-family: 'Koodak';
    src: url('fonts/BKOODB.woff2') format('woff2');
}

body {
    font-family: 'Koodak', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    text-align: right;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Step Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-navigation button {
    background-color: #004080;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
}

/* Label Styling */
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Input, Select, and Textarea Styling */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Koodak', Arial, sans-serif;
}

/* Fix Large Radio Buttons */
.radio-group {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 20px; /* Fix size */
    height: 20px;
    border: 2px solid #004080;
    border-radius: 50%;
    outline: none;
    position: relative;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked {
    background-color: #004080;
}

.radio-group label {
    font-weight: normal;
    margin-left: 5px;
    cursor: pointer;
}

/* Alerts and Warnings */
.alert-text {
    background-color: #ffcc00;
    color: black;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.warning-text {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Form Buttons */
.form-buttons {
    text-align: center;
    margin-top: 20px;
}

.form-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.back-btn {
    background-color: #ff6666;
    color: white;
}

.next-btn {
    background-color: #004080;
    color: white;
}

.submit-btn {
    background-color: #008000;
    color: white;
}

.simple-list {
    width: 100%;
    border-collapse: collapse;
    font-family: 'BKOODAK', sans-serif;
}

.simple-list th,
.simple-list td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
    white-space: normal;
    word-break: break-word;
}

.simple-list td:nth-child(1) {
    word-break: break-word;
    white-space: normal !important;
    overflow-wrap: anywhere;
}

@media (max-width: 600px) {
    .simple-list thead {
        display: none;
    }

    .simple-list tbody,
    .simple-list tr {
        display: block;
        width: 100%;
        margin-bottom: 1em;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        box-sizing: border-box;
    }

    .simple-list td {
        display: block;
        padding: 8px 10px;
        text-align: right;
        border: none;
        border-bottom: 1px solid #eee;
        white-space: normal;
    }

    .simple-list td::before {
        content: none !important;
    }

    .simple-list td:last-child {
        border-bottom: 0;
    }
}

.close-button {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1.5em;
    transition: background-color 0.3s ease;
}
.close-button:hover {
    background-color: #0056b3;
}
/* سلول شرح شکسته شود اگر طولانی بود */
.simple-list td:nth-child(1) { /* ستون اول یعنی شرح */
    word-break: break-word; /* شکستن کلمه طولانی */
    white-space: normal !important; /* اجازه خط خوردن */
    overflow-wrap: anywhere; /* شکستن در هر نقطه ممکن */
}
/* --- گزارش دینامیک --- */
.dynamic-report {
    border-collapse: separate;
    border-spacing: 0;
    width: 92%;
    max-width: 1000px;
    margin: 36px auto 18px auto; /* وسط‌چین و فاصله‌ی کافی بالا/پایین */
    background: #fff;
    box-shadow: 0 2px 16px #0001;
    font-family: inherit;
    font-size: 1.13em;
    direction: rtl;
  }
  .dynamic-report thead {
    background: #00497A;
    color: #fff;
  }
  .dynamic-report th,
  .dynamic-report td {
    border: 1.5px solid #ddd;
    padding: 0.6em 1.1em;
    text-align: right;
  }
  .dynamic-report th {
    font-size: 1.15em;
    letter-spacing: 0.03em;
    font-weight: bold;
  }
  .dynamic-report tbody tr:nth-child(even) {
    background: #f8fafb;
  }
  .dynamic-report tbody tr:nth-child(odd){
    background: #fbfcfd;
  }
  .dynamic-report td {
    vertical-align: middle;
    font-size: 1em;
  }
  .dynamic-report {
    border-radius: 8px;
    overflow: hidden;
  }
  @media (max-width:650px){
    .dynamic-report, .dynamic-report thead, .dynamic-report tbody, .dynamic-report th, .dynamic-report td, .dynamic-report tr {
      display: block;
      width: 100%;
    }
    .dynamic-report thead tr { display: none; }
    .dynamic-report tr {
      margin-bottom: 16px;
      border-radius: 8px;
      box-shadow: 0 2px 8px #0001;
      background: #fff;
    }
    .dynamic-report td {
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-right: 45%;
      min-height: 38px;
      font-size: 0.98em;
      text-align: right;
    }
    .dynamic-report td:before {
      content: attr(data-label);
      position: absolute;
      right: 0.7em; top: 0.5em;
      font-weight: bold;
      color: #00497A;
      font-size: 0.99em;
    }
  }
  .dynamic-report-header-simple {
    width: 100%;
    max-width: 400px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.dynamic-report-title-simple {
    color: #00497A;
    text-align: center;
    font-size: 2em;
    margin-bottom: 22px;
    margin-top: 0;
    font-weight: bold;
    letter-spacing: 0.02em;
}
.dynamic-report-searchbox-simple {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.dynamic-report-searchbox-simple input[type="text"] {
    padding: 10px 15px;
    font-size: 1.05em;
    border: 1.6px solid #00497A;
    border-radius: 28px;
    width: 100%;
    background: #f8fafb;
    font-family: inherit;
    outline: none;
    min-width: 0;
}
.dynamic-report-searchbox-simple input[type="text"]:focus {
    border-color: #ffb800;
}

.dynamic-excel-btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 35px auto;
}
.excel-export-btn-small {
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 4px;
    transition: box-shadow 0.2s;
    display: flex;
    align-items: center;
}
.excel-export-btn-small img {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px #d8ffdb);
    transition: filter 0.13s;
}
.excel-export-btn-small:hover img {
    filter: brightness(1.08) drop-shadow(0 3px 4px #a0fbaa);
}
@media (max-width:600px){
    .dynamic-report-header-simple {
        max-width: 98vw;
        margin-top: 19px;
    }
    .dynamic-report-title-simple {
        font-size: 1.08em;
        margin-bottom: 14px;
    }
    .dynamic-report-searchbox-simple {
        margin-bottom: 13px;
    }
    .excel-export-btn-small img {
        width: 40px;
        height: 40px;
    }
}
.dynamic-excel-btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 35px auto;
}

/* دکمه اکسل واکنش‌گرا با نسبت از عرض صفحه */
.excel-export-btn-fluid {
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15vw;    /* نهایتاً 15% عرض صفحه */
    max-width: 120px;
    min-width: 48px;
    aspect-ratio: 1/1; /* مربع بماند */
    padding: 0;
    transition: box-shadow 0.2s;
}
.excel-export-btn-fluid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px #e0ffe0);
    transition: filter 0.11s;
}
.excel-export-btn-fluid:hover img {
    filter: brightness(1.08) drop-shadow(0 3px 8px #82f99d);
}
@media (max-width:700px) {
    .excel-export-btn-fluid {
        width: 22vw;
        min-width: 36px;
        max-width: 64px;
    }
}


  







