/* ROI Calculator Variables */
:root {
    --roi-primary: #1d18af;
    --roi-accent: #1d18af;
    --roi-light-bg: #F5F7FA;
    --roi-white: #FFFFFF;
    --roi-text: #333333;
    --roi-light-text: #666666;
    --roi-border: #E5E8ED;
    --roi-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --roi-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.1);
    --roi-success: #28a745;
    --roi-danger: #dc3545;
    --roi-warning: #ffc107;
    --roi-info: #17a2b8;
    --roi-table-bg: #E9EDF2;
}

/* ROI Section */
.roi-section {
    background: var(--roi-light-bg);
    padding: 60px 0;
}

.roi-wizard {
    max-width: 1600px;
    margin: 0 auto;
}

.question-area {
    border-radius: 8px;
    padding: 40px;
    margin: 0 auto;
}

/* Step Progress */
.step-progress {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--roi-border);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: var(--roi-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    border: 2px solid var(--roi-border);
    transition: all 0.3s ease;
}

.step.active {
    border-color: var(--roi-primary);
    background: var(--roi-primary);
    color: white;
}

.step.completed {
    border-color: var(--roi-accent);
    background: var(--roi-accent);
    color: white;
}

.step-number {
    font-weight: 600;
    font-size: 18px;
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    white-space: nowrap;
    font-size: 14px;
    color: var(--roi-text);
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Header Section */
.roi-header-section {
    text-align: center;
    margin-bottom: 40px;
}

/* Form Container */
.roi-form-container {
    background: var(--roi-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--roi-shadow);
    margin: 0 auto;
    margin-bottom: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--roi-text);
    font-size: 16px;
    line-height: 1.6;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    text-align: center;
    margin-bottom: 40px;
}

.step-title h3 {
    color: var(--roi-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.step-title p {
    color: var(--roi-light-text);
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.option-item {
    position: relative;
    height: 100%;
}

.option-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 20px;
    background: var(--roi-white);
    border: 2px solid var(--roi-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-align: center;
}

.option-label::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--roi-border);
    border-radius: 50%;
    background: var(--roi-white);
    transition: all 0.2s ease;
}

.option-radio:checked + .option-label::after {
    border-width: 6px;
    border-color: var(--roi-primary);
}

.option-radio:checked + .option-label {
    border-color: var(--roi-primary);
    box-shadow: 0 4px 12px rgba(29, 24, 175, 0.15);
    background: rgba(29, 24, 175, 0.05);
}

.option-label:hover {
    border-color: var(--roi-accent);
    box-shadow: 0 2px 8px rgba(29, 24, 175, 0.1);
}

.option-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--roi-text);
}

/* Input Container */
.input-container {
    max-width: 400px;
    margin: 0 auto 40px auto;
}

.input-container .form-group {
    margin-bottom: 0;
}

.input-container input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--roi-border);
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    transition: all 0.2s ease;
    background: var(--roi-white);
}

.input-container input:focus {
    outline: none;
    border-color: var(--roi-primary);
    box-shadow: 0 0 0 3px rgba(29, 24, 175, 0.1);
}

.input-container input.error {
    border-color: var(--roi-danger);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Form Groups */
.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--roi-text);
    font-size: 16px;
}

.form-group label i {
    margin-right: 8px;
    color: var(--roi-accent);
}

.form-group {
    text-align: center;
}


.form-group input,
.form-group select {
    width: 100%;
    max-width: 120px;
    padding: 12px 15px;
    border: 2px solid var(--roi-border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: var(--roi-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--roi-primary);
    box-shadow: 0 0 0 3px rgba(10, 42, 94, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--roi-danger);
}

/* Form Navigation */
.form-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--roi-primary);
    color: white;
}

.btn-primary:focus {
    box-shadow: none !important;
}

.btn-primary:hover {
    background: #083a8c;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d;
}

.btn-primary:disabled:hover {
    background: #6c757d;
    box-shadow: none;
}

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

.btn-secondary:hover {
    background: #5a6268;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

/* Results Container */
.results-container {
    display: none;
    background: var(--roi-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--roi-shadow);
}

/* Summary Container */
.summary-container {
    background: linear-gradient(135deg, var(--roi-primary) 0%, var(--roi-accent) 100%);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    color: white;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-container h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.new-calculation-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-calculation-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.new-calculation-btn i {
    font-size: 12px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item .label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item .value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}



/* Tables Grid */
.tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.table-container {
    background: var(--roi-white);
    overflow: auto;
}

.roi-results table th {
    text-align: center !important;
}

@media only screen and (max-width: 767px){
    .roi-results table th, .roi-results table td{
        padding: 12px 8px !important;
    }
}

.table-container h2 {
    color: var(--roi-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-container h2 i {
    color: var(--roi-accent);
    font-size: 20px;
}

/* Tables */
.results-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    border-radius: 8px;
    border: 2px solid #E5E8ED;
    background: var(--roi-white);
    overflow: auto;
}

.results-container th {
    background: var(--roi-table-bg);
    color: var(--roi-primary);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: none;
    border-bottom: 1px solid #E5E8ED;
}

.results-container th:first-child {
    text-align: left;
}

.detail-content td:first-child {
    text-align: left;
}

@media(min-width: 768px) {
    .results-container th:last-child {
        min-width: 150px;
    }
}

.results-container td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--roi-border);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.results-container tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.results-container tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.results-container tr:last-child td {
    border-bottom: none;
}

.results-container tr.category-row {
    cursor: pointer;
    transition: all 0.2s ease;
}

.results-container tr.category-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.results-container tr.category-row td:first-child {
    text-align: left;
    font-weight: 500;
    gap: 10px;
}

.results-container tr.category-row i.fas {
    color: var(--roi-accent);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.results-container tr.details-row {
    display: none;
    background: var(--roi-white);
}

.results-container tr.total-row {
    background: var(--roi-table-bg);
    color: var(--roi-primary);
    font-weight: 600;
    font-size: 15px;
}

.results-container tr.total-row td {
    color: var(--roi-primary) !important;
    border-bottom: none;
}

.total-row td:first-child {
    text-align: left;
    color: var(--roi-primary) !important;
    font-weight: 600;
}


/* Detail Content */

.detail-content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--roi-white);
    overflow: hidden;
    border: 2px solid var(--roi-border);
}

.detail-content th {
    background: var(--roi-accent);
    color: white;
    padding: 12px 15px;
    min-width: 100px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

.detail-content td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--roi-border);
    font-size: 13px;
    text-align: center;
    max-width: 160px;
}

.detail-content tr:nth-child(even) {
    background: var(--roi-light-bg);
}

.detail-content tr:last-child td {
    border-bottom: none;
}

/* Badges */
.improvement-badge {
    background: var(--roi-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.roi-badge {
    background: var(--roi-success);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.roi-badge-warning {
    background: var(--roi-warning);
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .tables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tables-grid .table-container:nth-child(1) {
        order: 2;
      }
      .tables-grid .table-container:nth-child(2) {
        order: 1;
      }
}

@media (max-width: 768px) {
    .roi-section {
        padding: 40px 0;
    }

    .roi-wizard {
        padding: 0 15px;
    }

    .step-progress {
        display: none;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .step {
        margin: 0 15px;
        width: 40px;
        height: 40px;
    }

    .step-number {
        font-size: 16px;
    }

    .step-label {
        font-size: 12px;
        max-width: 80px;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .option-label {
        height: 80px;
        padding: 15px;
    }

    .option-text {
        font-size: 14px;
    }

    .step-title h3 {
        font-size: 20px;
    }

    .input-container {
        max-width: 100%;
    }

    .input-container input {
        font-size: 16px;
        padding: 12px 15px;
    }

    .roi-form-container,
    .results-container {
        padding: 25px;
    }

    .roi-header-section {
        margin-bottom: 30px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .results-container h2 {
        font-size: 24px;
    }

    .form-navigation {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .results-container th,
    .results-container td {
        padding: 10px;
        font-size: 13px;
        max-width: 40px !important;
    }

    .detail-content {
        padding: 15px;
        margin: 5px;
    }

    .detail-content th,
    .detail-content td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .table-container h2 {
        font-size: 20px;
        padding: 15px 20px;
    }

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .summary-container {
        padding: 20px;
    }

    .summary-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .summary-container h3 {
        font-size: 18px;
        margin: 0;
    }

    .new-calculation-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .summary-item {
        padding: 12px;
    }

    .summary-item .value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .roi-container {
        padding: 0;
    }

    .roi-wizard {
        padding: 0;
    }
    .detail-content table {
        table-layout: fixed; 
    }

    .detail-content th {
        max-width: 40px !important;
        width: 40px;
        min-width: 40px;
        padding: 12px 4px; /* Azaltılmış padding */
        font-size: 11px; /* Küçültülmüş font */
        word-wrap: break-word;
        word-break: break-all; /* Zorla kelime kırma */
        line-height: 1.2;
        overflow: hidden;
        white-space: normal;           /* Satır kırılmasına izin ver */
        overflow-wrap: anywhere;       /* Satır sonu geldiğinde kelimeyi kır */
        word-break: break-word;  
    }
    .detail-content td {
        max-width: 40px !important;
        width: 40px;
        padding: 12px 4px;
        font-size: 11px;
        word-wrap: break-word;
        word-break: break-all;
        overflow: hidden;
        white-space: normal;           /* Satır kırılmasına izin ver */
        overflow-wrap: anywhere;       /* Satır sonu geldiğinde kelimeyi kır */
        word-break: break-word;  
    }
    
         .roi-badge,
     .roi-badge-warning {
         padding: 4px;
     }

    .roi-form-container,
    .results-container {
        padding: 20px;
    }

    .roi-header-section {
        margin-bottom: 25px;
    }

    .form-header h2 {
        font-size: 20px;
    }

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

    .results-container th,
    .results-container td {
        padding: 8px;
        font-size: 12px;
    }

    .table-container h2 {
        font-size: 18px;
        padding: 12px 15px;
    }

    .detail-content {
        padding: 0;
        margin: 3px;
    }

    .detail-content th,
    .detail-content td {
        padding: 6px 8px;
        font-size: 11px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .summary-container {
        padding: 15px;
    }

    .summary-container h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .summary-item {
        padding: 10px;
    }

    .summary-item .label {
        font-size: 11px;
    }

    .summary-item .value {
        font-size: 14px;
    }
} 

.tooltip-icon {
    cursor: pointer;
    color: #083a8c;
}

.help-tooltip {
    position: absolute;
    display: none;
    width: 250px;
    background-color: #000000d8;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin-left: 10px;
    transition: all 0.2s ease;
    z-index: 1000;
}

/* Toast notifications removed */

/* Disclaimer Styles */
.disclaimer-container {
    margin-top: 40px;
    padding: 0;
}

.disclaimer-content {
    background: linear-gradient(135deg, #fbfbfb 0%, #f1f1ef 100%);
    border: 1px solid #f1f1ef;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbfbfb, #a5a5a5);
}

.disclaimer-content h4 {
    color: #1d18af;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-content h4 i {
    color: #1d18af;
    font-size: 20px;
}

.disclaimer-content p {
    color: #252525;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .disclaimer-container {
        margin-top: 30px;
    }
    
    .disclaimer-content {
        padding: 20px;
    }
    
    .disclaimer-content h4 {
        font-size: 16px;
    }
    
    .disclaimer-content p {
        font-size: 13px;
    }
}

/* PDF Download Button */
.pdf-download-container {
    margin: 0;
    padding: 0;
}

.pdf-download-btn-full {
    width: 100%;
}

.pdf-download-btn-full i {
    font-size: 18px;
}

/* PDF Download Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.pdf-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.pdf-modal-header {
    padding: 15px 25px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pdf-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.pdf-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.pdf-modal-close:hover {
    background: #f8f9fa;
    color: #666;
}

.pdf-modal-body {
    padding: 0 25px;
}

.pdf-modal-body p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

.pdf-modal-body .form-group {
    margin-bottom: 15px;
}

.pdf-modal-body input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.pdf-modal-body input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.pdf-modal-body input[type="email"].error {
    border-color: #dc3545;
}

.modal-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 6px;
}

.modal-success {
    text-align: center;
    padding: 40px 20px;
    color: #28a745;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.modal-success i {
    font-size: 48px;
    color: #28a745;
    animation: successPulse 0.6s ease-out;
}

.modal-success span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pdf-modal-footer {
    padding: 20px 25px 25px 25px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.pdf-modal-footer .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdf-modal-footer .btn-secondary {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: white;
}

.pdf-modal-footer .btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
}


.pdf-modal-footer .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Notification styles removed - using modal success instead */

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake {
    animation: shake 0.6s ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pdf-download-btn-full {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .pdf-modal-content {
        width: 95%;
        margin: 0 auto;
    }
    
    .pdf-modal-header,
    .pdf-modal-body,
    .pdf-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .pdf-modal-footer {
        flex-direction: column;
    }
    
    .pdf-modal-footer .btn {
        width: 100%;
    }
}