/* =====================================================
   RB ACADEMY
   CORE COMPONENTS
===================================================== */

/* BOTONES */

.rb-info-btn{
    background:#ea8354;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.2s;
}

.rb-info-btn:hover{
    background:#d76f40;
}

.rb-btn-icon{

    background:none !important;
    border:none;

    width:auto !important;
    height:auto !important;

    padding:0;

    color:inherit;

    cursor:pointer;

    font-size:16px;

    transition:.2s;
}
.rb-btn-filter{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    height:44px;

    padding:0 24px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:10px;

    color:#374151;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:.2s;
}

.rb-btn-filter i{

    color:#374151;

    font-size:14px;
}

.rb-btn-filter:hover{

    border-color:#d1d5db;

    background:#fafafa;
}

.rb-btn-filter:hover{

    border-color:#ea8354;

    color:#ea8354;
}

.rb-acciones{

    display:flex;

    gap:14px;

    align-items:center;
}
.rb-btn-view{

    color:#2563eb;
}

.rb-btn-edit{

    color:#f97316;
}

.rb-btn-delete{

    color:#ef4444;
}
.rb-btn-view:hover{

    color:#1d4ed8;
}

.rb-btn-edit:hover{

    color:#ea580c;
}

.rb-btn-delete:hover{

    color:#dc2626;
}
.rb-btn-view i{
    color:#2563eb;
}

.rb-btn-edit i{
    color:#f97316;
}

.rb-btn-delete i{
    color:#ef4444;
}

.rb-btn-view:hover i{
    color:#1d4ed8;
}

.rb-btn-edit:hover i{
    color:#ea580c;
}

.rb-btn-delete:hover i{
    color:#dc2626;
}