        
        html{
            background-color: #EBE300;
        }
        .custom-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .custom-modal.show {
            opacity: 1;
            display: block;
        }
        .custom-modal .flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .custom-modal .btn-close {
            background: none;
            border: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        .custom-modal .btn {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .modal-content {
            border-radius: 15px;
            overflow: visible;
            border: none;
        }
        .modal-header {
            border-bottom: none;
            padding-bottom: 0;
        }
        .radicado-banner {
            background-color: #28a745;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            margin-top: -30px;
            margin-left: 20px;
            margin-right: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .radicado-banner i {
            font-size: 24px;
            margin-right: 10px;
        }
        .radicado-banner h5 {
            margin: 0;
            font-size: 18px;
        }
        .modal-body {
            padding-top: 30px;
        }
        .video-container {
            margin: 20px 0;
        }
        .btn-success,
        .btn-danger {
            margin: 0 10px;
        }
        .loader-container {
            display: none;
            /* Inicialmente oculto */
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.8);
        }
        .loader {
            width: 100px;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 16px solid #0000;
            border-right-color: #25b09b;
            position: relative;
            animation: l24 1s infinite linear;
        }
        .loader:before,
        .loader:after {
            content: "";
            position: absolute;
            inset: -16px;
            /* Ajustar el margen */
            border-radius: 50%;
            border: inherit;
            animation: inherit;
            animation-duration: 2s;
        }
        .loader:after {
            animation-duration: 4s;
        }
        @keyframes l24 {
            100% {
                transform: rotate(1turn)
            }
        }
        .email-suggestions {
            position: absolute;
            background-color: white;
            border: 1px solid #ccc;
            max-height: 150px;
            overflow-y: auto;
            z-index: 1000;
        }

        .email-suggestion {
            padding: 5px 10px;
            cursor: pointer;
        }

        .email-suggestion:hover {
            background-color: #f0f0f0;
        }

        .email-error {
            color: red;
            margin-top: 5px;
            display: none;
        }
        
        .text-white {
            color: white !important;
        }
        
        .bg-red {
            background-color: #E74A3B;
            padding: 10px;
            border-radius: 10px;
        }
        
         .bg-green {
            background-color: #1CC88A;
            padding: 10px;
            border-radius: 10px;
        }


        input[type=number]::-webkit-inner-spin-button,
        input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
     
        @font-face {
            font-family: Raleway;
            src: url("Raleway-Regular.ttf");
        }
        
        
        /*nuevo modal de success*/
/* Estilos para el modal personalizado renombrado */
.custom-modal-renamed {
    display: none;
}

.custom-modal-renamed.show {
    display: block;
}

.custom-modal-dialog-renamed {
    max-width: 500px;
    margin: 1.75rem auto;
}

.custom-modal-content-renamed {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}

.custom-modal-header-renamed {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.custom-modal-body-renamed {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.custom-modal-footer-renamed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.custom-btn-success-renamed,
.custom-btn-secondary-renamed {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.custom-btn-success-renamed {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.custom-btn-secondary-renamed {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}


/* Estilos para carga de archivos mejorada */
.file-upload-container {
    transition: all 0.3s ease;
}

.file-upload-container:hover {
    border-color: #d6cf00 !important;
    background-color: rgba(255, 255, 255, 0.7) !important;
}

.file-upload-container.dragover {
    border-color: #1a237e !important;
    background-color: rgba(26, 35, 126, 0.05) !important;
}

.file-list {
    margin-top: 0.5rem;
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.8rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0.4rem;
    border: 1px solid #e0e0e0;
}

.file-name {
    flex-grow: 1;
    margin-right: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    color: #6c757d;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.file-remove {
    cursor: pointer;
    color: #dc3545;
    transition: color 0.2s;
}

.file-remove:hover {
    color: #a71d2a;
}

.file-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.file-info {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}


/* Estilos para mensajes de éxito mejorados */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-success .alert-heading {
    color: #0f4221;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .badge {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-warning strong {
    color: #533f03;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Animación para el mensaje de éxito */
@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert.show {
    animation: slideInDown 0.3s ease-out;
}

/* Mejorar el botón de cerrar */
.alert .close {
    padding: 0.75rem 1.25rem;
    opacity: 0.7;
}

.alert .close:hover {
    opacity: 1;
}

/* Estilo para el badge del radicado */
.badge.bg-success {
    background-color: #28a745 !important;
    color: white;
    letter-spacing: 1px;
}