@media (min-width: 768px) {
    .mini-sidebar .user-profile .profile-img {
        padding: 15px 0 0 0;
        margin: 0px 0 0 0px;
    }
}

.user-profile .profile-img img {
    width: 100%;
    padding: 5px;
    border: 0px solid rgba(120, 130, 140, 0.13) !important;
    border-radius: 100%
}

.topbar {
    background: #22A070;
}

input::placeholder {
    opacity: 0.7 !important;
    margin-left: 20px;
    color: silver !important;
}

.titleSoft {
    font-weight: bold;
}

.titleSoftextend {
    font-size: 14px;
}

.titleSoftinicio {
    font-size: 18px;
    font-weight: bold;
}

.inputColor {
    background-color: #f3f3f3;
}

.inputCustom {
    margin-left: 20px;
}

.btn-lg {
    padding: .65rem 1.5rem !important;
    font-size: 0.95rem !important;
}

.login-box {
    width: 480px !important;
    font-size: 20px;
}



.btn-outline-excel {
    color: #217346;
    /* Color del texto y del ícono */
    border: 2px solid #217346;
    /* Contorno verde estilo Excel */
    background-color: transparent;
    /* Fondo transparente */
}

.btn-outline-excel:hover {
    background-color: #217346;
    /* Fondo verde al pasar el mouse */
    color: #ffffff;
    /* Texto blanco al pasar el mouse */
}

.btn-outline-blue {
    color: #007bff;
    /* Letras e ícono azul */
    border: 2px solid #007bff;
    /* Borde azul */
    background-color: transparent;
    /* Fondo transparente */
}

.btn-outline-blue:hover {
    background-color: #007bff;
    /* Fondo azul al pasar el mouse */
    color: #ffffff;
    /* Letras blancas al pasar el mouse */
}

.compact-form {
    gap: 8px;
    /* Espacio entre el label y el selector */
    font-size: 14px;
    /* Tamaño de fuente reducido */
}

.compact-form label {
    margin-bottom: 0;
    /* Sin espacio adicional debajo del label */
}

.compact-form .form-select-sm {
    width: 60px;
    padding: 0.25rem 0.5rem;
    font-size: 14px;
    line-height: 1.5;
    height: 30px;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulseColor {
    0% {
        background-color: #1363D0;
    }

    50% {
        background-color: #184397;
    }

    100% {
        background-color: #1363D0;
    }
}

.pulseColor {
    animation: pulseColor 180s infinite;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    background-color: #f8f9fa;
    border: 2px dashed #E1F0FF;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    margin: 0 auto;
    /* Centrar horizontalmente */
}

.custom-file-upload:hover {
    background-color: #e9ecef;
    border-color: #E9EAEA;
}

#support_url {
    display: none;
}

#file-name {
    margin-top: 10px;
    color: #6c757d;
    font-size: 0.9em;
    text-align: center;
}

.custom-file-upload input[type="file"] {
    display: none;
}

#archivoSoporteDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.drop-zone {
    border: 2px dashed #4597E8;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.drop-zone.drag-over {
    background-color: #f0f0f0;
    border-color: #007bff;
}

@media (max-width: 600px) {
    .custom-file-upload {
        max-width: 90%;
        padding: 8px 16px;
    }
}

/* Timeline mejorada */
.timeline {
    list-style-type: none;
    position: relative;
    padding-left: 40px;
    margin: 0;
}

.timeline:before {
    content: ' ';
    background: #e0e0e0;
    display: inline-block;
    position: absolute;
    left: 16px;
    width: 2px;
    height: 100%;
    z-index: 1;
}

.timeline-item {
    margin: 0 0 25px 0;
    position: relative;
    padding-bottom: 5px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #26c6da;
    left: -30px;
    width: 16px;
    height: 16px;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(38, 198, 218, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover:before {
    transform: scale(1.2);
}

.timeline-item.success:before {
    border-color: #55ce63;
    box-shadow: 0 0 0 3px rgba(85, 206, 99, 0.1);
}

.timeline-item.danger:before {
    border-color: #ef5350;
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1);
}

.timeline-item.warning:before {
    border-color: #ffb22b;
    box-shadow: 0 0 0 3px rgba(255, 178, 43, 0.1);
}

.timeline-date {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 30px;
    background-color: #f8f9fa;
    color: #666;
    margin-bottom: 10px;
}

.timeline-title {
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.timeline-comment {
    padding: 8px 12px;
    background-color: rgba(239, 83, 80, 0.05);
    border-left: 2px solid #ef5350;
    margin-top: 8px;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
}

.timeline-empty {
    color: #99abb4;
    font-style: italic;
}

.timeline-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 6px;
    vertical-align: middle;
    font-weight: 500;
}

.badge-recibida {
    background-color: rgba(38, 198, 218, 0.1);
    color: #26c6da;
}

.badge-registrada {
    background-color: rgba(85, 206, 99, 0.1);
    color: #55ce63;
}

.badge-devuelta {
    background-color: rgba(239, 83, 80, 0.1);
    color: #ef5350;
}

.badge-anulada {
    background-color: rgba(255, 178, 43, 0.1);
    color: #ffb22b;
}

.titulosys {
    margin-left: 15px;
    margin-top: 15px;
    color: white;
}

.user-profile {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    padding: 1.25rem;
                    background: linear-gradient(145deg, #ffffff 0%, #f5f8fc 100%);
                    border-radius: 10px;
                    box-shadow: 0 4px 20px rgba(23, 65, 152, 0.05);
                    position: relative;
                    overflow: hidden;
                    border: none;
                    transition: all 0.25s ease;
                }

                .user-profile:hover {
                    box-shadow: 0 6px 24px rgba(23, 65, 152, 0.08);
                }

                .profile-avatar {
                    width: 75px;
                    height: 75px;
                    margin-bottom: 0.75rem;
                    position: relative;
                    z-index: 2;
                }

                .profile-info {
                    flex: 1;
                    position: relative;
                    z-index: 2;
                    text-align: center;
                }

                .user-name {
                    margin: 0;
                    font-size: 1.05rem;
                    font-weight: 600;
                    color: #174198;
                    /* Azul más oscuro para el nombre */
                    margin-bottom: 0.2rem;
                }

                .user-email {
                    font-size: 0.85rem;
                    color: #5a7bb4;
                    /* Azul medio para el email */
                    display: block;
                }

                .bg-pattern {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                    opacity: 0.25;
                    pointer-events: none;
                }

                /* Versión responsiva */
                @media (max-width: 576px) {
                    .user-profile {
                        padding: 1rem 0.75rem;
                    }
                }

                /* Estilos mejorados para el perfil */
                .user-profile {
                    padding: 20px;
                    /* margin: 0 0 15px 0;*/
                    background-color: #fff;
                    border-radius: 8px;
                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    position: relative;
                    overflow: hidden;
                }

                /* Sutil línea superior */
                .user-profile::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 3px;
                    /*background: linear-gradient(to right, #0D9164, #1e88e5);*/
                }

                .profile-avatar {
                    width: 70px;
                    height: 70px;
                    border-radius: 50%;
                    background-color: #f5f5f5;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 12px;
                }

                .profile-avatar img {
                    width: 42px;
                    height: 42px;
                    opacity: 0.6;
                }

                .profile-info {
                    width: 100%;
                }

                .user-name {
                    font-size: 15px;
                    font-weight: 600;
                    color: #333;
                    margin: 0 0 4px 0;
                    line-height: 1.3;
                }

                .user-email {
                    font-size: 13px;
                    color: #718096;
                    display: block;
                }

                /* Versión compacta para sidebar colapsado */
                .mini-sidebar .user-profile {
                    padding: 15px 10px;
                }

                .mini-sidebar .profile-avatar {
                    width: 45px;
                    height: 45px;
                    margin-bottom: 0;
                }

                .mini-sidebar .profile-avatar img {
                    width: 28px;
                    height: 28px;
                }

                .mini-sidebar .profile-info {
                    display: none;
                }

                .sidebar-nav .sidebar-link:hover,
        .sidebar-nav .sidebar-link.active {
            background-color: rgba(160, 159, 166, 0.04) !important;
            color: #2962FF;
        }

        .left-sidebar {
            position: fixed;
            width: 240px;
            height: 100%;
            top: 0;
            z-index: 20;
            background: #f8f9fa;
            box-shadow: 1px 0 20px rgba(0, 0, 0, 0.08);
        }

        .scroll-sidebar {
            height: calc(100% - 20px);
            position: relative;
        }

        .sidebar-nav ul {
            margin: 0;
            padding: 0;
        }

        .sidebar-nav .sidebar-item {
            width: 100%;
        }

        .sidebar-nav .sidebar-link {
            color: #54667a;
            padding: 12px 15px;
            display: flex;
            white-space: nowrap;
            align-items: center;
            position: relative;
            text-decoration: none;
            transition: 0.2s ease-in;
        }

        .sidebar-nav .sidebar-link:hover,
        .sidebar-nav .sidebar-link.active {
            background-color: rgba(0, 0, 0, 0.04);
            color: #2962FF;
        }

        .sidebar-nav .sidebar-link i {
            font-size: 18px;
            margin-right: 8px;
            text-align: center;
            width: 25px;
        }

        .sidebar-nav ul.first-level {
            padding-left: 35px;
            background: rgba(0, 0, 0, 0.02);
        }
 /* Reducir el tamaño de fuente en los inputs */
 #modal-revision .form-control,
 #modal-revision .form-select,
 #modal-revision .input-group-text {
     font-size: 0.85rem;
     padding: 0.375rem 0.5rem;
 }

 /* Ajustar las etiquetas */
 #modal-revision .form-label {
     font-size: 0.8rem;
     font-weight: 500;
     margin-bottom: 0.25rem;
     color: #495057;
 }

 /* Permitir que el campo de destino muestre más texto */
 #destino {
     height: auto;
     min-height: 2.5rem;
     overflow-y: auto;
     white-space: normal;
     word-break: break-word;
 }

 
