.font-inter {
    font-family: 'Inter', sans-serif;
}

#languageDropdownMenu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    width: auto;
    top: 60px;
    right: 20px;
    margin-top: 0.25rem;
    z-index: 999;
}

#languageDropdownMenu.show {
    display: block;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8fafc;
}

.dropdown-item img,
#selectedFlag {
    object-fit: cover;
}



/* Fin new style */



.enabled-link {
    text-decoration: none;
    color: blue;
    pointer-events: auto;
    opacity: 1;
}

.disabled-link {
    text-decoration: none;
    color: grey;
    pointer-events: none;
    opacity: 0.5;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    text-align: center;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-options {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.payment-options button {
    background: none;
    border: none;
    cursor: pointer;
}

.payment-options img {
    width: 100px;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}



body {
    font-family: Arial, sans-serif;
    padding: 30px;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blurred {
    filter: blur(6px);
    color: gray;
}

.price-section {
    margin-top: 30px;
}

.cta-button {
    display: block;
    margin: 40px auto 0;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
}

.field {
    margin-bottom: 15px;
}

.label {
    font-weight: bold;
    color: #555;
}

.value {
    margin-left: 10px;
}

hr {
    margin-top: 40px;
}

.blurred {
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
}

#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #323232;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 14px;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

@media print {
    #toast {
        display: none !important;
    }
}

.no-export {
    display: block;
}

body.exporting .no-export {
    display: none !important;
}

.only-export {
    display: none;
}

body.exporting .only-export {
    display: block !important;
}

/* Normal en web */
table {
  width: 100%;
}

/* Solo cuando se exporta a PDF */
body.exporting table {
  transform: scale(0.9);   /* reduce al 90% */
  transform-origin: top left;
}

body.exporting th {
  white-space: normal; /* permite salto de línea en títulos */
}

/* Web normal */
table {
  min-width: 900px;
  table-layout: fixed;
  white-space: nowrap;
}

/* Solo cuando exportás PDF */
body.exporting table {
  min-width: auto !important;
  width: 100% !important;
  table-layout: auto !important;
}

/* Solo durante la exportación a PDF */
body.exporting table th,
body.exporting table td {
  font-size: 13px;         /* un poco más grande que 11px */
  padding: 5px 8px;        /* deja más aire que 4px 6px */
  white-space: normal !important; /* permite saltos de línea */
}

.no-break {
  page-break-inside: avoid;
  break-inside: avoid;
}