

        /* Contenedor de notificaciones */
        .toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            max-width: 300px;
            z-index: 9999;
        }

        /* Estilos base para cada notificación */
        .toast {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 12px 16px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            font-size: 14px;
            color: #fff;
            background-color: #4caf50; /* Verde por defecto */
        }

        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Tipos de notificación */
        .toast.success {
            background-color: #4caf50;
        }

        .toast.error {
            background-color: #f44336;
        }

        .toast.info {
            background-color: #2196f3;
        }

        .toast.warning {
            background-color: #ff9800;
        }

        /* Iconos */
        .toast .icon {
            margin-right: 10px;
            font-size: 18px;
        }

        /* Botón de cierre */
        .toast .close-btn {
            margin-left: auto;
            background: none;
            border: none;
            color: inherit;
            font-size: 16px;
            cursor: pointer;
        }