﻿/* =========================
   FORMATO GENERAL (_frm)
========================= */

._frm {
    background: #f5f7fa;
    padding: 10px;
}

._frm-container {
    width: 100%;
}

/* TARJETAS */
._frm-card {
    background: #fff;
    border: 1px solid #dce1e7;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* TITULOS */
._frm-title {
    color: #2c5aa0;
    font-weight: bold;
}

/* INPUTS */
._frm-input,
._frm-select {
    border: 1px solid #dce1e7;
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
}

    ._frm-input:focus,
    ._frm-select {
    padding: 10px;
            }

    ._frm-select:focus {
        outline: none;
        border-color: #2c5aa0;
        box-shadow: 0 0 0 2px rgba(44,90,160,0.1);
    }

    /*._frm-select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 35px;
        background-color: #fff;*/
        /* Flechita SVG */
        /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232c5aa0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
    }

        ._frm-select:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 2px rgba(44,90,160,0.1);
        }*/

/* INPUT DESTACADO */
._frm-input-highlight {
    background: #e7f0fb;
    font-weight: 500;
}

/* LABELS */
._frm-label {
    font-size: 12px;
    color: #495057;
    margin-bottom: 2px;
}

/* BOTONES */
._frm-btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 6px 12px;
}

._frm-btn-primary {
    background: #2c5aa0;
    color: #fff;
    border: none;
}

._frm-btn-secondary {
    background: #6c757d;
    color: #fff;
    border: none;
}

._frm-btn-danger {
    background: #d9534f;
    color: #fff;
    border: none;
}

._frm-btn-info {
    background: #5aa0d6;
    color: #fff;
    border: none;
}

/* CLIENT BOX */
._frm-client-box {
    background: #f8fafc;
    border: 1px solid #dce1e7;
    border-radius: 8px;
    padding: 5px 10px;
}

._frm-divider {
    width: 1px;
    height: 25px;
    background: #dce1e7;
}

/* TABS */
._frm-tabs .nav-link.active {
    background: #2c5aa0 !important;
    color: #fff !important;
}

/* TABLAS */
._frm-table thead {
    background: #2c5aa0;
    color: #fff;
}
