/* Custom Toast Notifications - Large Card Style */
.uk-notification {
    width: 400px !important;
    max-width: 90vw !important;
    margin: 20px !important;
}

.uk-notification-message {
    position: relative !important;
    background: #ffffff !important;
    color: #333 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    padding: 30px 20px !important;
    border: 1px solid #f0f0f0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Remove the side accent bar from previous design */
.uk-notification-message::before {
    display: none !important;
}

/* Toast Content Layout */
.toast-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.toast-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111; /* Dark icon like image */
    flex-shrink: 0;
    margin-bottom: 5px;
}

.toast-icon svg, .toast-icon span {
    width: 48px;
    height: 48px;
}

/* Status colors for icon if needed, but default is dark */
.uk-notification-message-success .toast-icon { color: #00b894; }
.uk-notification-message-warning .toast-icon { color: #fdcb6e; }
.uk-notification-message-danger .toast-icon { color: #d63031; }

.toast-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.3;
}

.toast-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.toast-action {
    width: 100%;
    margin-top: 20px;
}

.toast-btn {
    background: #2563eb; /* Bright blue */
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.toast-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    color: #fff !important;
    text-decoration: none;
}

.toast-btn span {
    margin-right: 8px;
}