    :root{
        --bs-primary: #051423;
        --bs-primary-rgb: rgb(5 20 35) !important;
    }
    body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #f4f7fa;
        margin: 0;
    }
    textarea {
        overflow-y: auto;
        resize: none;
        max-height: calc(1.5em * 8); /* 8 filas (ajusta si tienes diferente line-height) */
        line-height: 1.5em;
    }
    .border-red-500
	{
        border-color: oklch(63.7% 0.237 25.331) !important;
    }
    .bg-primary{
        background-color: #0b2948 !important;
    }
    .color-primary{
        color: #0b2948 !important;
    }
    .btn-primary{
        background-color: #14548c;
        color: white;
        border-color: #14548c;
    }
    .sidebar {
        width: 240px;
        min-height: 100vh;
        background-color: #0b2948;
        color: white;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: background-color 0.3s ease;
    }
    .sidebar .nav-link {
        color: white;
        transition: background-color 0.3s ease, padding-left 0.2s ease;
    }
    .sidebar .nav-link:hover {
        background-color: #17436a;
        padding-left: 20px;
    }
    .sidebar .nav-link.active {
        background-color: #17436a;
    }
    .offcanvas-start {
            background-color: #0b2c49;
            color: white;
    }
    .content {
        margin-left: 240px;
        padding-bottom: 20px;
    }
    .topbar {
        background-color: white;
        border-bottom: 1px solid #ddd;
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        margin: 0;
    }
    .card {
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }
    .card:hover {
        transform: translateY(-3px);
    }
    .sidebar hr.custom-divider {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin: 20px 0 10px;
    }
    .row{
        margin-right: 0 !important;
    }

    /*RESPONSIVE*/
    @media (max-width: 768px) {
        .btn-topbar{
            display: none !important;
        }
        .btn-menu-responsive{
            width: 70px !important;
            display: inline-block !important;
        }
        .btn-menu-responsive button i {
            font-size: 20px !important;
            font-weight: bold !important;
        }
        .div-menu-responsive{
            width: 100% !important;
            margin-top: 10px;
        }
        .sidebar {
            /*position: static;
            width: 100%;
            flex-direction: row;
            height: auto;
            overflow-x: auto;*/
            display: none;
        }
        .content {
            margin-left: 0;
            padding: 15px;
        }
        .topbar {
            flex-direction: column;
            align-items: flex-start;
        }
    }