/**
 * Wibe Toast Manager Styles
 * Modular notification component for WordPress plugin
 */

.wibe-toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

.wibe-toast-top-right {
    top: 20px;
    right: 20px;
}

.wibe-toast-top-left {
    top: 20px;
    left: 20px;
}

.wibe-toast-bottom-right {
    bottom: 20px;
    right: 20px;
}

.wibe-toast-bottom-left {
    bottom: 20px;
    left: 20px;
}

.wibe-toast-bottom-center {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    max-width: 100%;
    width: 100%;
}

.wibe-toast {
    background: white;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    min-height: 48px;
    overflow: hidden;
    pointer-events: auto;
    position: relative;
    transform: translateX(100%);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
}

.wibe-toast-full-width {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 4px solid #2271b1;
    margin-bottom: 0;
}

.wibe-toast-full-width.wibe-toast-success {
    border-top-color: #00a32a;
}

.wibe-toast-full-width.wibe-toast-error {
    border-top-color: #d63638;
}

.wibe-toast-full-width.wibe-toast-warning {
    border-top-color: #dba617;
}

.wibe-toast-full-width.wibe-toast-info {
    border-top-color: #2271b1;
}

.wibe-toast-bottom-center .wibe-toast {
    transform: translateY(100%);
}

.wibe-toast-bottom-center .wibe-toast.wibe-toast-show {
    transform: translateY(0);
}

.wibe-toast.wibe-toast-show {
    transform: translateX(0);
}

.wibe-toast.wibe-toast-success {
    border-left-color: #00a32a;
}

.wibe-toast.wibe-toast-error {
    border-left-color: #d63638;
}

.wibe-toast.wibe-toast-warning {
    border-left-color: #dba617;
}

.wibe-toast.wibe-toast-info {
    border-left-color: #2271b1;
}

.wibe-toast-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    min-height: 48px;
}

.wibe-toast-message {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    color: #1d2327;
}

.wibe-toast-close {
    background: none;
    border: none;
    color: #646970;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    margin-left: 12px;
    padding: 4px;
    flex-shrink: 0;
}

.wibe-toast-close:hover {
    color: #1d2327;
}

.wibe-toast-progress {
    background: rgba(0,0,0,0.1);
    bottom: 0;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}

.wibe-toast-progress-bar {
    background: currentColor;
    height: 100%;
    transition: width linear;
    width: 100%;
}

.wibe-toast-actions {
    display: flex;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}


