:root {
    --header: #191925;
    --menuColor: #1E1E2F;
    --selectColorMenu: #BB86FC;
    --menuBotonSelect: #2A2A2A;
    --fondo: #2D2D3F;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #FFF;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #1E1E2F;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-app-header-logo: "Poppins", sans-serif;
    ;
}

.btn-eliminar {
    background-color: var(--red);
    transition: 0.3s;
}

.btn-eliminar:hover {
    background-color: var(--dark) !important;
}

.modalPermisos {


    .modal-header {
        background-color: var(--header);

        button {
            color: var(--white);
        }
    }

    .modal-body {
        background-color: var(--header);
    }
}


.btnTable {
    padding: 6px;
}

.btnTable i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 3px;
}

.perfil {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #2D2D3F;
    /* fondo */
    padding: 20px;
    border-radius: 10px;
}

    @media (min-width: 1024px) {
        .perfil{
            flex-direction: row;

        }
    }


.perfil-nombre {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #1E1E2F;
    /* primary/menu */
    padding: 20px;
    border-radius: 8px;

    .datos{
        display: flex;
        flex-direction: column;

        .rol{
            font-size: 16px;
        }
    }
    
}

.perfil-nombre .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: url("https://source.unsplash.com/featured/800x600/?website,ui");
    background-size: cover;
    background-position: center;
    margin-right: 15px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.perfil-nombre p {
    margin: 0;
    font-size: 1.8rem;
    color: #e0e0e0;
}

.table-perfil {
    flex: 2;
    background-color: #1E1E2F;
    /* primary/menu */
    border-radius: 8px;
    padding: 20px;
}

.tile-title {
    margin: 0 0 15px;
    font-size: 1.4rem;
    color: #e0e0e0;
    border-bottom: 2px solid #191925;
    /* header */
    padding-bottom: 5px;
}

.table-perfil table {
    width: 100%;
    border-collapse: collapse;
}

.table-perfil th,
.table-perfil td {
    padding: 10px;
    color: #e0e0e0;
    border-bottom: 1px solid #191925;
    text-align: left;
}

.table-perfil th {
    background-color: #191925;
    /* header */
}

.table-perfil tr:nth-child(even) {
    background-color: #2D2D3F;
    /* fondo */
}