/**
 * Valora — identidad visual base (Vanilla CSS)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --success: #10b981;
    --success-hover: #059669;
    --border: #e2e8f0;
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-modal: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --radius: 8px;
    --radius-sm: 6px;
    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --topbar-h: 56px;
    --sidebar-w: 260px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-main);
    background: var(--bg-body);
}

body.valora-modal-open,
body.valora-sidebar-open {
    overflow: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ——— App shell ——— */
.valora-app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.valora-topbar {
    height: var(--topbar-h);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 0.75rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 0;
    z-index: 40;
}

.valora-topbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.75rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    min-width: 0;
}

.valora-topbar__brand:hover {
    text-decoration: none;
    color: var(--primary);
}

.valora-topbar__logo {
    max-height: 2rem;
    width: auto;
    object-fit: contain;
    display: block;
}

.valora-topbar__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 0.25rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text-main);
    cursor: pointer;
}

.valora-topbar__toggle:hover {
    background: var(--bg-body);
}

@media (max-width: 991px) {
    .valora-topbar__toggle {
        display: inline-flex;
    }
}

.valora-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

.valora-sidebar {
    width: var(--sidebar-w);
    flex-shrink: 0;
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    padding: 1rem 0;
    overflow-y: auto;
    z-index: 30;
}

@media (max-width: 991px) {
    .valora-sidebar {
        position: fixed;
        left: 0;
        top: var(--topbar-h);
        bottom: 0;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        box-shadow: var(--shadow-modal);
    }

    .valora-sidebar.is-open {
        transform: translateX(0);
    }
}

.valora-sidebar__title {
    margin: 0 1rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.valora-nav {
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
}

.valora-nav li {
    margin: 0.125rem 0;
}

.valora-nav a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
}

.valora-nav a:hover {
    background: var(--bg-body);
    color: var(--primary);
    text-decoration: none;
}

.valora-nav a.is-active {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.valora-nav .ti {
    font-size: 1.15rem;
    opacity: 0.85;
}

.valora-main {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 1.5rem clamp(1rem, 3vw, 2rem);
    max-width: none;
}

/* ——— Tipografía módulos ——— */
.valora-page-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.valora-page-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.valora-page-title .ti {
    color: var(--primary);
}

.valora-lead {
    margin: 0.35rem 0 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 52ch;
}

/* ——— Tarjetas ——— */
.valora-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.valora-card__header {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to bottom, #fff, #fafbfc);
}

.valora-card__body {
    padding: 1.25rem;
}

.valora-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .valora-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .valora-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ——— Botones ——— */
.valora-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.valora-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.valora-btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.valora-btn--primary:hover:not(:disabled) {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    text-decoration: none;
}

.valora-btn--secondary {
    background: var(--bg-surface);
    color: var(--text-main);
    border-color: var(--border);
}

.valora-btn--secondary:hover:not(:disabled) {
    background: var(--bg-body);
    text-decoration: none;
    color: var(--text-main);
}

.valora-btn--success {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

.valora-btn--success:hover:not(:disabled) {
    background: var(--success-hover);
    border-color: var(--success-hover);
    color: #fff;
    text-decoration: none;
}

.valora-btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
}

.valora-btn--ghost:hover:not(:disabled) {
    background: var(--bg-body);
    color: var(--text-main);
    text-decoration: none;
}

.valora-btn--danger {
    background: #fff;
    color: #b91c1c;
    border-color: #fecaca;
}

.valora-btn--danger:hover:not(:disabled) {
    background: #fef2f2;
    text-decoration: none;
    color: #991b1b;
}

.valora-btn--sm {
    padding: 0.35rem 0.65rem;
    font-size: 0.8125rem;
}

/* ——— Formularios ——— */
.valora-field {
    margin-bottom: 1.1rem;
}

.valora-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-main);
}

.valora-input,
.valora-select,
.valora-textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-main);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.valora-input:focus,
.valora-select:focus,
.valora-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.valora-textarea {
    min-height: 88px;
    resize: vertical;
}

.valora-help {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ——— Tablas (envoltorio + DataTables) ——— */
.valora-table-wrap {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: auto;
    padding: 0.5rem;
}

.valora-table-wrap table.dataTable {
    width: 100% !important;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.valora-table-wrap table.dataTable thead th {
    text-align: left;
    padding: 0.85rem 1rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--border);
    background: var(--bg-body);
}

.valora-table-wrap table.dataTable tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    vertical-align: middle;
}

.valora-table-wrap table.dataTable tbody tr:last-child td {
    border-bottom: none;
}

.valora-table-wrap table.dataTable tbody tr:hover {
    background: rgba(248, 250, 252, 0.9);
}

/* DataTables controles */
.valora-table-wrap .dataTables_wrapper .dataTables_length,
.valora-table-wrap .dataTables_wrapper .dataTables_filter,
.valora-table-wrap .dataTables_wrapper .dataTables_info,
.valora-table-wrap .dataTables_wrapper .dataTables_paginate {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.valora-table-wrap .dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.valora-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.35rem 0.65rem !important;
    margin: 0 0.1rem;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border) !important;
    background: var(--bg-surface) !important;
    color: var(--text-main) !important;
}

.valora-table-wrap .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.valora-table-wrap .dt-buttons {
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.valora-table-wrap .dt-button {
    font-family: inherit !important;
    font-size: 0.8125rem !important;
    padding: 0.4rem 0.75rem !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border) !important;
    background: var(--bg-surface) !important;
    color: var(--text-main) !important;
}

.valora-table-wrap .dt-button:hover {
    background: var(--bg-body) !important;
    border-color: var(--text-muted) !important;
}

/* ——— Badges ——— */
.valora-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    line-height: 1.2;
}

.valora-badge--success {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.valora-badge--danger {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}

.valora-badge--warning {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.valora-badge--neutral {
    background: var(--bg-body);
    color: var(--text-muted);
}

/* ——— Modal ——— */
.valora-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
}

.valora-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.valora-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
}

.valora-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 2rem);
    overflow: auto;
    z-index: 1;
}

.valora-modal__dialog--xl {
    width: 80%;
    max-width: 80%;
}

.valora-modal__dialog--lg {
    max-width: 80%;
}

.valora-modal__card {
    margin: 0;
    box-shadow: var(--shadow-modal);
}

.valora-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.valora-modal__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.valora-modal__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.valora-modal__close:hover {
    background: var(--bg-body);
    color: var(--text-main);
}

.valora-modal__body {
    padding: 1.25rem;
}

.valora-modal__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-body);
}

/* ——— Dropdown usuario ——— */
.valora-user-wrap {
    position: relative;
}

.valora-user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
}

.valora-user-btn:hover {
    background: var(--bg-body);
}

.valora-user-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.valora-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 200px;
    padding: 0.35rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-modal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    z-index: 50;
}

.valora-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.valora-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.875rem;
    text-decoration: none;
}

.valora-dropdown a:hover {
    background: var(--bg-body);
    text-decoration: none;
    color: var(--primary);
}

.valora-dropdown hr {
    margin: 0.35rem 0;
    border: none;
    border-top: 1px solid var(--border);
}

/* ——— Login ——— */
.valora-login {
    min-height: 100vh;
    display: grid;
}

@media (min-width: 992px) {
    .valora-login {
        grid-template-columns: 1fr 1fr;
    }
}

.valora-login__brand {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(165deg, var(--primary) 0%, #3730a3 100%);
    color: #fff;
    text-align: center;
}

@media (min-width: 992px) {
    .valora-login__brand {
        display: flex;
    }
}

.valora-login__brand img {
    max-width: min(280px, 90%);
    height: auto;
    margin-bottom: 1.5rem;
}

.valora-login__brand h2 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.valora-login__brand p {
    margin: 0;
    opacity: 0.92;
    font-size: 1rem;
}

.valora-login__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--bg-body);
}

.valora-login__box {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.valora-login__box img.valora-login__logo-sm {
    display: block;
    max-width: 140px;
    height: auto;
    margin: 0 auto 1.25rem;
}

@media (min-width: 992px) {
    .valora-login__box img.valora-login__logo-sm {
        display: none;
    }
}

.valora-login__box h1 {
    margin: 0 0 0.35rem;
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
}

.valora-login__box .valora-help {
    text-align: center;
    margin-bottom: 1.25rem;
}

/* ——— Utilidades ——— */
.valora-mt-0 { margin-top: 0; }
.valora-mt-1 { margin-top: 0.5rem; }
.valora-mt-2 { margin-top: 1rem; }
.valora-mb-0 { margin-bottom: 0; }
.valora-mb-1 { margin-bottom: 0.5rem; }
.valora-mb-2 { margin-bottom: 1rem; }
.valora-flex { display: flex; }
.valora-flex-wrap { flex-wrap: wrap; }
.valora-gap-1 { gap: 0.5rem; }
.valora-gap-2 { gap: 1rem; }
.valora-items-center { align-items: center; }
.valora-justify-between { justify-content: space-between; }

code {
    font-size: 0.8125em;
    padding: 0.1em 0.35em;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-main);
}

.valora-stat {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0.5rem 0 1rem;
}

.valora-kpi-card .valora-card__body {
    min-height: 132px;
}

.valora-mini-kpi {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.75rem;
    background: #fcfdff;
}

.valora-mini-kpi span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.valora-mini-kpi strong {
    font-size: 1.05rem;
    color: var(--text-main);
}

.valora-chart-wrap {
    position: relative;
    width: 100%;
    min-height: 260px;
    height: 260px;
}

.valora-chart-wrap--lg {
    min-height: 320px;
    height: 320px;
}

.valora-range-filter {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    overflow: hidden;
}

.valora-range-filter__btn {
    border: none;
    border-right: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1;
    padding: 0.45rem 0.6rem;
    min-width: 40px;
    cursor: pointer;
}

.valora-range-filter__btn:last-child {
    border-right: none;
}

.valora-range-filter__btn:hover {
    background: var(--bg-body);
    color: var(--text-main);
}

.valora-range-filter__btn.is-active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
}

.valora-range-filter__btn--icon {
    min-width: 36px;
    padding: 0.45rem;
}

.valora-row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.valora-row-2 > .valora-field {
    flex: 1 1 220px;
    margin-bottom: 0;
}

.valora-text-center {
    text-align: center;
}

.valora-preview-foto {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--border);
    margin-bottom: 0.5rem;
}

.valora-foto-actions {
    position: relative;
    display: inline-block;
}

.valora-foto-del {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: #fef2f2;
    color: #b91c1c;
    cursor: pointer;
    display: none;
}

.valora-foto-del:hover {
    background: #fee2e2;
}

#tbl-lineas {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

#tbl-lineas th,
#tbl-lineas td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

#tbl-lineas thead th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    background: var(--bg-body);
}

#cot_lista_pagos {
    list-style: none;
    margin: 0;
    padding: 0;
}

#cot_lista_pagos li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

#form-pago {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.75rem;
}

#form-pago .valora-input {
    width: auto;
    min-width: 100px;
    flex: 1 1 100px;
}

.valora-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-main);
}

.valora-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
}

.valora-login__box .valora-btn--primary {
    width: 100%;
}

@media (max-width: 991px) {
    .valora-hide-sm {
        display: none !important;
    }
}

.valora-d-none {
    display: none !important;
}

.valora-d-block {
    display: block;
}

.valora-table-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.valora-dt-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.valora-dt-toolbar .valora-dt-left,
.valora-dt-toolbar .valora-dt-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.valora-input-addon {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-surface);
}

.valora-input-addon:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.valora-input-addon__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    background: var(--bg-body);
    color: var(--text-muted);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}

.valora-input-addon .valora-input {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.valora-input-addon .valora-input:focus {
    box-shadow: none;
}

.valora-input-with-action {
    display: flex;
    align-items: stretch;
}

.valora-input-with-action .valora-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.valora-input-action-btn {
    width: 42px;
    border: 1px solid var(--border);
    border-left: none;
    border-top-right-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    background: var(--bg-body);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.valora-input-action-btn:hover {
    color: var(--primary);
    background: #eef2ff;
}
