﻿#cp-be-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 320px;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: sans-serif;
    z-index: 1050;
    animation: slide-in 0.4s ease-out;
}

#cp-be-toast-status-container {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

#cp-be-toast-status-line {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

    #cp-be-toast-status-line.success {
        background-color: #28a745;
    }

    #cp-be-toast-status-line.error {
        background-color: #dc3545;
    }

    #cp-be-toast-status-line.info {
        background-color: #17a2b8;
    }

    #cp-be-toast-status-line.warning {
        background-color: #ffc107;
    }

#cp-be-toast-status-icon {
    width: 20px;
    height: 20px;
}

#cp-be-toast-notification-container {
    padding: 16px;
}

#cp-be-toast-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

#cp-be-toast-message {
    font-size: 14px;
    line-height: 1.4;
}

#cp-be-toast-action-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

#cp-be-toast-close-button {
    background-color: transparent;
    color: #007bff;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
