﻿/* Contenedor principal de la notificación */
.corcasa-notification-container {
    background-color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

/* Icono de la impresora */
.corcasa-notification-icon {
    background-color: var(--color-Principal);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .corcasa-notification-icon .material-icons {
        color: white;
        font-size: 24px;
    }

/* Estilo del texto */
.corcasa-notification-text-container {
    flex: 1;
}

.corcasa-notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.corcasa-notification-subtitle {
    font-size: 14px;
    color: #777;
}

/* Barra de progreso */
.corcasa-progress-bar-container {
    background-color: #f1f1f1;
    border-radius: 4px;
    height: 8px;
    width: 100%;
    margin-top: 8px;
    position: relative;
}

.corcasa-progress-bar {
    background-color: var(--color-Principal);
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 0.4s ease;
}

/* Porcentaje */
.corcasa-progress-percent {
    font-size: 14px;
    color: #555;
}


.notification.error {
    background-color: #f44336; /* Rojo tipo error */
    color: white;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: fadeIn 0.5s, fadeOut 0.5s 4.5s;
}

