/* =====================================================
   DPS LIBRO V1 - CLEAN PRO STYLES
   ===================================================== */
#dps-libro-v1 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #334155;
    box-sizing: border-box;
    width: 90%; /* Por defecto ocupa todo */
}
/*
#dps-libro-v1:not(.dps-admin-view) {
    max-width: 850px;
    margin: 20px auto;
}*/

/* CASO ADMIN: Sin límite de ancho para encajar en WordPress */
#dps-libro-v1.dps-admin-view {
    max-width: 90%;
    margin: 0;
}

#dps-libro-v1 *, #dps-libro-v1 *::before, #dps-libro-v1 *::after { box-sizing: inherit; }


/* --- GRID & LAYOUT --- */
#dps-libro-v1 .dps-row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
#dps-libro-v1 .dps-col-4 { flex: 0 0 33.33%; padding: 10px; }
#dps-libro-v1 .dps-col-6 { flex: 0 0 50%; padding: 10px; }
#dps-libro-v1 .dps-col-8 { flex: 0 0 66.66%; padding: 10px; }
#dps-libro-v1 .dps-col-12 { flex: 0 0 100%; padding: 10px; }
#dps-libro-v1 .mb-4 { margin-bottom: 1.5rem !important; }

#dps-libro-v1 .dps-pro-card {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); padding: 2rem 2rem 0.5rem 2rem; overflow: visible !important;
}

#dps-libro-v1 .dps-h3 {
    font-size: 1.25rem; color: #111827; margin: 0 0 1.5rem 0;
    border-bottom: 2px solid #f3f4f6; padding-bottom: 0.5rem; font-weight: 700;
}

#dps-libro-v1 .dps-label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 600; color: #475569; }

/* --- FORM CONTROLS & VALIDATION --- */
#dps-libro-v1 .form-control {
    display: block; width: 100%; padding: 0.6rem 0.75rem; font-size: 1rem;
    color: #1f2937; background-color: #fff; border: 1px solid #d1d5db;
    border-radius: 0.375rem; transition: border-color 0.2s;
}
#dps-libro-v1 .form-control:focus { border-color: #0073aa; box-shadow: 0 0 0 3px rgba(0,115,170,0.15); outline: none; }

/* Validación Bootstrap 5 */
#dps-libro-v1 .was-validated .form-control:invalid, #dps-libro-v1 .form-control.is-invalid { border-color: #dc3545 !important; }
#dps-libro-v1 .was-validated .form-control:valid { border-color: #198754 !important; }

/* --- SELECT2 PREMIUM FIXES --- */
#dps-libro-v1 .select2-container--default .select2-selection--single {
    height: 46px !important; border: 1px solid #d1d5db !important; border-radius: 0.375rem !important; display: flex; align-items: center;
}
.select2-container { z-index: 9990 !important; } /* Por debajo del admin bar de WP */
#dps-libro-v1 .was-validated select:invalid + .select2 .select2-selection { border-color: #dc3545 !important; }

/* --- MODERN SWITCHES (Left Aligned) --- */
#dps-libro-v1 .dps-switch-wrapper { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
#dps-libro-v1 .dps-switch { position: relative; display: inline-block; width: 44px; height: 22px; flex-shrink: 0; vertical-align: middle; }
#dps-libro-v1 .dps-switch input { opacity: 0; width: 0; height: 0; }
#dps-libro-v1 .dps-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1; transition: .3s; border-radius: 22px;
}
#dps-libro-v1 .dps-slider:before {
    position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px;
    background-color: white; transition: .3s; border-radius: 50%;
}
#dps-libro-v1 input:checked + .dps-slider { background-color: #0073aa; }
#dps-libro-v1 input:checked + .dps-slider:before { transform: translateX(22px); }

/* --- RADIO CARDS --- */
#dps-libro-v1 .dps-radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
#dps-libro-v1 .dps-radio-card {
    border: 2px solid #e2e8f0; padding: 15px; border-radius: 12px; cursor: pointer;
    display: flex; gap: 12px; background: #fff; transition: 0.3s;
}
#dps-libro-v1 .dps-radio-card:has(input:checked) { border-color: #ced4da; background: #ffffff; }
#dps-libro-v1 .dps-radio-title { font-weight: 700; font-size: 15px; display: block; color: #1e293b; }
#dps-libro-v1 .dps-radio-desc { font-size: 11px; color: #64748b; line-height: 1.3; }

/* --- FILE UPLOAD & MISC --- */
#dps-libro-v1 .dps-file-upload { border: 2px dashed #cbd5e1; padding: 25px; border-radius: 12px; text-align: center; cursor: pointer; background: #f8fafc; }
#dps-libro-v1 .dps-counter { font-size: 11px; text-align: right; color: #94a3b8; font-weight: 600; margin-top: 5px; }
#dps-libro-v1 .btn-pro {
    display: block; width: 100%; background-color: #0073aa; color: #ffffff; padding: 0.85rem;
    border: none; border-radius: 0.375rem; font-size: 1rem; font-weight: 700; cursor: pointer; transition: 0.2s;
}
#dps-libro-v1 .btn-pro:disabled { opacity: 0.5; cursor: not-allowed; }

/* Ajustes para Switches dentro de las tablas de WP Admin */
#dps-libro-v1a .dps-switch-wrapper {
    display: flex;
    align-items: center;
    min-height: 30px;
}

#dps-libro-v1a .dps-switch-wrapper,
#dps-libro-v1a .dps-switch {
    margin-right: 5px;
}

#dps-libro-v1a .dps-switch-wrapper,
#dps-libro-v1a .select2-container {
    z-index: 9998 !important;
}



/************************************************************/
/* --- FORM SELECT NATIVO (BOOTSTRAP 5 STYLE) --- */
#dps-libro-v1 .form-select {
    display: block;
    width: 100%;
    padding: 0.6rem 2.25rem 0.6rem 0.75rem; /* Espacio para la flecha */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2937;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    appearance: none; /* Quita la flecha por defecto del sistema */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#dps-libro-v1 .form-select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}




/***************************************************/
/* --- ESTILOS PARA SWITCHES EN EL ADMIN --- */

#dps-libro-v1 .dps-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

#dps-libro-v1 .dps-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    flex-shrink: 0;
}

/* Ocultar el checkbox real de WordPress */
#dps-libro-v1 .dps-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    margin: 0 !important;
}

/* El fondo del switch */
#dps-libro-v1 .dps-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 22px;
    border: 1px solid #cbd5e1;
}

/* El círculo del switch */
#dps-libro-v1 .dps-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Cuando está activado */
#dps-libro-v1 input:checked + .dps-slider {
    background-color: #0073aa !important;
    border-color: #0073aa !important;
}

#dps-libro-v1 input:checked + .dps-slider:before {
    transform: translateX(22px) !important;
}
/***************/
/* El fondo del switch */
#dps-libro-v1 .dps-slider1 {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #95937a;
    transition: .3s;
    border-radius: 22px;
    border: 1px solid #cbd5e1;
}

/* El círculo del switch */
#dps-libro-v1 .dps-slider1:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Cuando está activado */
#dps-libro-v1 input:checked + .dps-slider1 {
    background-color: #aa6600 !important;
    border-color: #615c01 !important;
}

#dps-libro-v1 input:checked + .dps-slider1:before {
    transform: translateX(22px) !important;
}

/******************/

/* Estilo para el icono de candado en el Lite */
#dps-libro-v1 .dashicons-lock {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #999;
}
.btn-full {
    width: 100%;
    text-align: center;
}
/* =====================================================
   DPS LIBRO PRO - CLEAN PRO STYLES
   ===================================================== */
#dps-lr-v1 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #334155;
    box-sizing: border-box;
    width: 90%; /* Por defecto ocupa todo */
}

/* CASO ADMIN: Sin límite de ancho para encajar en WordPress */
#dps-lr-v1.dps-admin-view {
    max-width: 90%;
    margin: 0;
}

#dps-lr-v1 *, #dps-lr-v1 *::before, #dps-lr-v1 *::after { box-sizing: inherit; }

/* --- GRID & LAYOUT --- */
#dps-lr-v1 .dps-row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
#dps-lr-v1 .dps-col-4 { flex: 0 0 33.33%; padding: 10px; }
#dps-lr-v1 .dps-col-6 { flex: 0 0 50%; padding: 10px; }
#dps-lr-v1 .dps-col-8 { flex: 0 0 66.66%; padding: 10px; }
#dps-lr-v1 .dps-col-12 { flex: 0 0 100%; padding: 10px; }
#dps-lr-v1 .mb-4 { margin-bottom: 1.5rem !important; }

#dps-lr-v1 .dps-pro-card {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); padding: 2rem 2rem 0.5rem 2rem; overflow: visible !important;
}

#dps-lr-v1 .dps-h3 {
    font-size: 1.25rem; color: #111827; margin: 0 0 1.5rem 0;
    border-bottom: 2px solid #f3f4f6; padding-bottom: 0.5rem; font-weight: 700;
}

#dps-lr-v1 .dps-label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 600; color: #475569; }

/* --- FORM CONTROLS & VALIDATION --- */
#dps-lr-v1 .form-control, #dps-lr-v1 .dps-form-control {
    display: block; width: 100%; padding: 0.6rem 0.75rem; font-size: 1rem;
    color: #1f2937; background-color: #fff; border: 1px solid #d1d5db;
    border-radius: 0.375rem; transition: border-color 0.2s; box-sizing: border-box;
}
#dps-lr-v1 .form-control:focus, #dps-lr-v1 .dps-form-control:focus { border-color: #0073aa; box-shadow: 0 0 0 3px rgba(0,115,170,0.15); outline: none; }

/* Validación Bootstrap 5 */
#dps-lr-v1 .was-validated .form-control:invalid, #dps-lr-v1 .form-control.is-invalid { border-color: #dc3545 !important; }
#dps-lr-v1 .was-validated .form-control:valid { border-color: #198754 !important; }

/* --- SELECT2 PREMIUM FIXES --- */
#dps-lr-v1 .select2-container--default .select2-selection--single {
    height: 46px !important; border: 1px solid #d1d5db !important; border-radius: 0.375rem !important; display: flex; align-items: center;
}
.select2-container { z-index: 9990 !important; } /* Por debajo del admin bar de WP */
#dps-lr-v1 .was-validated select:invalid + .select2 .select2-selection { border-color: #dc3545 !important; }

/* --- MODERN SWITCHES (Left Aligned) --- */
#dps-lr-v1 .dps-switch-wrapper { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; margin-bottom: 5px; }
#dps-lr-v1 .dps-switch { position: relative; display: inline-block; width: 44px; height: 22px; flex-shrink: 0; vertical-align: middle; }
#dps-lr-v1 .dps-switch input { opacity: 0 !important; width: 0 !important; height: 0 !important; position: absolute !important; margin: 0 !important; }

#dps-lr-v1 .dps-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1; transition: .3s; border-radius: 22px; border: 1px solid #cbd5e1;
}
#dps-lr-v1 .dps-slider:before {
    position: absolute; content: ""; height: 16px; width: 16px; left: 2px; bottom: 2px;
    background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#dps-lr-v1 input:checked + .dps-slider { background-color: #0073aa !important; border-color: #0073aa !important; }
#dps-lr-v1 input:checked + .dps-slider:before { transform: translateX(22px) !important; }

/* Variante Switch 1 (Secundario) */
#dps-lr-v1 .dps-slider1 {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #95937a; transition: .3s; border-radius: 22px; border: 1px solid #cbd5e1;
}
#dps-lr-v1 .dps-slider1:before {
    position: absolute; content: ""; height: 16px; width: 16px; left: 2px; bottom: 2px;
    background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#dps-lr-v1 input:checked + .dps-slider1 { background-color: #aa6600 !important; border-color: #615c01 !important; }
#dps-lr-v1 input:checked + .dps-slider1:before { transform: translateX(22px) !important; }


/* --- RADIO CARDS --- */
#dps-lr-v1 .dps-radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
#dps-lr-v1 .dps-radio-card {
    border: 2px solid #e2e8f0; padding: 15px; border-radius: 12px; cursor: pointer;
    display: flex; gap: 12px; background: #fff; transition: 0.3s; align-items: flex-start;
}
#dps-lr-v1 .dps-radio-card:has(input:checked) { border-color: #0073aa; background: #f0f9ff; box-shadow: 0 4px 6px rgba(0, 115, 170, 0.1); }
#dps-lr-v1 .dps-radio-title { font-weight: 700; font-size: 15px; display: block; color: #1e293b; }
#dps-lr-v1 .dps-radio-desc { font-size: 11px; color: #64748b; line-height: 1.3; display: block; margin-top: 4px;}

/* --- FILE UPLOAD & MISC --- */
#dps-lr-v1 .dps-file-upload { border: 2px dashed #cbd5e1; padding: 25px; border-radius: 12px; text-align: center; cursor: pointer; background: #f8fafc; transition: all 0.3s ease;}
#dps-lr-v1 .dps-file-upload:hover { border-color: #0073aa; background: #f0f9ff; }
#dps-lr-v1 .dps-counter { font-size: 11px; text-align: right; color: #94a3b8; font-weight: 600; margin-top: 5px; }
#dps-lr-v1 .btn-pro {
    display: block; width: 100%; background-color: #0073aa; color: #ffffff; padding: 0.85rem;
    border: none; border-radius: 0.375rem; font-size: 1rem; font-weight: 700; cursor: pointer; transition: 0.2s; text-align: center;
}
#dps-lr-v1 .btn-pro:disabled { opacity: 0.5; cursor: not-allowed; }

/* --- FORM SELECT NATIVO (BOOTSTRAP 5 STYLE) --- */
#dps-lr-v1 .form-select, #dps-lr-v1 .dps-form-select {
    display: block; width: 100%; padding: 0.6rem 2.25rem 0.6rem 0.75rem;
    font-size: 1rem; font-weight: 400; line-height: 1.5; color: #1f2937;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px 12px;
    border: 1px solid #d1d5db; border-radius: 0.375rem;
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#dps-lr-v1 .form-select:focus, #dps-lr-v1 .dps-form-select:focus {
    border-color: #0073aa; outline: none; box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}

/* Icono de candado */
#dps-lr-v1 .dashicons-lock { font-size: 16px; width: 16px; height: 16px; color: #999; }

/* Botones genéricos admin */
.btn-full { width: 100%; text-align: center; }
.btn {
    display: inline-block; font-weight: 400; line-height: 1.5; color: rgb(33, 37, 41);
    text-align: center; vertical-align: middle; cursor: pointer; user-select: none;
    background-color: transparent; font-size: 1rem; text-decoration: none;
    border: 1px solid transparent; padding: 0.375rem 0.75rem; border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
}

.btn-danger { color: #fff; background-color: #dc3545; border-color: #dc3545; }
.btn-danger:hover { color: #fff; background-color: #bb2d3b; border-color: #b02a37; }

.btn-success { color: #ffffff; background-color: #198754; border-color: #198754; }
.btn-success:hover { color: #fff; background-color: #157347; border-color: #146c43; }

.btn-warning { color: rgb(0, 0, 0); background-color: #ffc107; border-color: #ffc107; }
.btn-warning:hover { color: rgb(0, 0, 0); background-color: #ffca2c; border-color: #ffc720; }

.btn, .btn-sm { padding: .25rem .5rem; font-size: .875rem; border-radius: .2rem; }

/* Utils Margins & Paddings */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.pt-3 { padding-top: 1rem !important; }

.dps-mb-3 { margin-bottom: 1rem !important; }
.dps-mb-4 { margin-bottom: 1.5rem !important; }
.dps-mt-3 { margin-top: 1rem !important; }

/* Alerts */
.dps-alert { position: relative; padding: 1rem 1rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.375rem; }
.dps-alert-success { color: #0f5132; background-color: #d1e7dd; border-color: #badbcc; }
.dps-alert-secondary { color: #41464b; background-color: #e2e3e5; border-color: #d3d6d8; }
.dps-alert-warning { color: #664d03; background-color: #fff3cd; border-color: #ffecb5; }
.dps-alert-heading { color: inherit; font-weight: bold; margin-bottom: 10px; }

.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.dps-me-2 { margin-inline-end: 0.5rem !important; }

/* Info List */
.info-list { display: flex; flex-direction: column; gap: 8px; }
.info-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.info-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }

.btn-success {
    color: #ffffff;
    background-color: #198754;
    border-color: #198754;
}
.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
}
.btn-success:focus,
.btn-success:active,
.btn-success.active {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
    box-shadow: none;
}

.btn-warning {
    color: rgb(0, 0, 0);
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: rgb(0, 0, 0);
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn-warning:focus,
.btn-warning:active,
.btn-warning.active {
    color: #000000;
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}






/* Margin Bottom */

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

/* Small (≥576px) */
@media (min-width: 576px) {
  .mb-sm-0 { margin-bottom: 0 !important; }
  .mb-sm-1 { margin-bottom: 0.25rem !important; }
  .mb-sm-2 { margin-bottom: 0.5rem !important; }
  .mb-sm-3 { margin-bottom: 1rem !important; }
  .mb-sm-4 { margin-bottom: 1.5rem !important; }
  .mb-sm-5 { margin-bottom: 3rem !important; }
  .mb-sm-auto { margin-bottom: auto !important; }
}

/* Medium (≥768px) */
@media (min-width: 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-1 { margin-bottom: 0.25rem !important; }
  .mb-md-2 { margin-bottom: 0.5rem !important; }
  .mb-md-3 { margin-bottom: 1rem !important; }
  .mb-md-4 { margin-bottom: 1.5rem !important; }
  .mb-md-5 { margin-bottom: 3rem !important; }
  .mb-md-auto { margin-bottom: auto !important; }
}

/* Large (≥992px) */
@media (min-width: 992px) {
  .mb-lg-0 { margin-bottom: 0 !important; }
  .mb-lg-1 { margin-bottom: 0.25rem !important; }
  .mb-lg-2 { margin-bottom: 0.5rem !important; }
  .mb-lg-3 { margin-bottom: 1rem !important; }
  .mb-lg-4 { margin-bottom: 1.5rem !important; }
  .mb-lg-5 { margin-bottom: 3rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
}

/* Extra Large (≥1200px) */
@media (min-width: 1200px) {
  .mb-xl-0 { margin-bottom: 0 !important; }
  .mb-xl-1 { margin-bottom: 0.25rem !important; }
  .mb-xl-2 { margin-bottom: 0.5rem !important; }
  .mb-xl-3 { margin-bottom: 1rem !important; }
  .mb-xl-4 { margin-bottom: 1.5rem !important; }
  .mb-xl-5 { margin-bottom: 3rem !important; }
  .mb-xl-auto { margin-bottom: auto !important; }
}

/* Extra Extra Large (≥1400px) */
@media (min-width: 1400px) {
  .mb-xxl-0 { margin-bottom: 0 !important; }
  .mb-xxl-1 { margin-bottom: 0.25rem !important; }
  .mb-xxl-2 { margin-bottom: 0.5rem !important; }
  .mb-xxl-3 { margin-bottom: 1rem !important; }
  .mb-xxl-4 { margin-bottom: 1.5rem !important; }
  .mb-xxl-5 { margin-bottom: 3rem !important; }
  .mb-xxl-auto { margin-bottom: auto !important; }
}
/* Padding Y (top + bottom) */

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}
/* Small (≥576px) */
@media (min-width: 576px) {
  .py-sm-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-sm-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-sm-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-sm-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-sm-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-sm-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Medium (≥768px) */
@media (min-width: 768px) {
  .py-md-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-md-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-md-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-md-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-md-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-md-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Large (≥992px) */
@media (min-width: 992px) {
  .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-lg-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-lg-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-lg-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-lg-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-lg-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Extra Large (≥1200px) */
@media (min-width: 1200px) {
  .py-xl-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-xl-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-xl-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-xl-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-xl-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-xl-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Extra Extra Large (≥1400px) */
@media (min-width: 1400px) {
  .py-xxl-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-xxl-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-xxl-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-xxl-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-xxl-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-xxl-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}


.dps-form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dps-form-select:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.dps-form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  appearance: none;
}
.dps-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da!important;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.dps-form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dps-form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.dps-form-control:disabled,
.dps-form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.dps-alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}
.dps-alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.dps-alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.dps-alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.dps-alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.dps-alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.dps-alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.dps-alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.dps-alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.dps-alert-link {
  font-weight: 700;
}
.dps-alert-dismissible {
  padding-right: 3rem;
}

.dps-alert-dismissible .dps-btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.d-flex {
  display: flex !important;
}
.dps-me-0 { margin-inline-end: 0 !important; }

.dps-me-1 { margin-inline-end: 0.25rem !important; }

.dps-me-2 { margin-inline-end: 0.5rem !important; }

.dps-me-3 { margin-inline-end: 1rem !important; }

.dps-me-4 { margin-inline-end: 1.5rem !important; }

.dps-me-5 { margin-inline-end: 3rem !important; }

.dps-me-auto { margin-inline-end: auto !important; }

.dps-ms-0 { margin-inline-start: 0 !important; }

.dps-ms-1 { margin-inline-start: 0.25rem !important; }

.dps-ms-2 { margin-inline-start: 0.5rem !important; }

.dps-ms-3 { margin-inline-start: 1rem !important; }

.dps-ms-4 { margin-inline-start: 1.5rem !important; }

.dps-ms-5 { margin-inline-start: 3rem !important; }

.dps-ms-auto { margin-inline-start: auto !important; }
.dps-alert-heading {
  color: inherit;
}
.d-block {
  display: block !important;
}
.info-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.info-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}








