     /* Estilos para el modal*/
     .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(0.25rem);
        animation: fadeIn 0.2s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .modal-content {
        background-color: #1d201d;
        color: #e8e8e8;
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
        max-width: 28rem;
        width: 85%;
        margin: 0 auto;
        transform: translateY(0);
        animation: slideUp 0.3s ease-out;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    @keyframes slideUp {
        from { transform: translateY(2rem); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.75rem;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
    }
    
    .modal-body {
        margin-bottom: 1.5rem;
        max-height: 60vh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #4d4d4d #1d201d;
    }
    
    .modal-body::-webkit-scrollbar {
        width: 0.5rem;
    }
    
    .modal-body::-webkit-scrollbar-track {
        background: #1d201d;
    }
    
    .modal-body::-webkit-scrollbar-thumb {
        background-color: #4d4d4d;
        border-radius: 1rem;
    }
    
    .modal-body p {
        white-space: pre-wrap;
        word-wrap: break-word;
        text-align: left;
        line-height: 1.6;
        font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
        font-size: 0.95rem;
        color: #e0e0e0;
        margin: 0;
    }
    
    .modal-footer {
        display: flex;
        justify-content: flex-end;
        gap: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
    }
    
    .confirm-button, .reject-button {
        border: none;
        padding: 0.625rem 1.25rem;
        border-radius: 0.5rem;
        cursor: pointer;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        letter-spacing: 0.01em;
    }
    
    .confirm-button {
        background-color: #2e7d32;
        color: white;
    }
    
    .confirm-button:hover {
        background-color: #3a8a3a;
        transform: translateY(-1px);
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    }
    
    .reject-button {
        background-color: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #e0e0e0;
    }
    
    .reject-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .close-button {
        background: transparent;
        border: none;
        font-size: 1.25rem;
        cursor: pointer;
        color: #999;
        padding: 0;
        line-height: 1;
        margin-left: auto;
        font-weight: 300;
    }
    
    .close-button:hover {
        color: #fff;
    }
    
    /* Para centrar el modal automáticamente */
    body.modal-open .modal-overlay {
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .confirmation-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        border-radius: 5px;
        z-index: 2000;
    }


    /* Media queries para responsividad */
    @media (max-width: 640px) {
        .modal-content {
            width: 92%;
            border-radius: 0.75rem;
            padding: 1.25rem;
        }
        
        .modal-footer {
            flex-direction: column;
        }
        
        .confirm-button, .reject-button {
            width: 100%;
            padding: 0.75rem;
        }
    }

           