/* Global Notification Overlay Styles */
.tt-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 20px;
    box-sizing: border-box;
}

.tt-notification-overlay.tt-active {
    opacity: 1;
    visibility: visible;
}

.tt-notification-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.tt-notification-overlay.tt-active .tt-notification-card {
    transform: scale(1);
}

.tt-notification-header {
    padding: 24px 20px 8px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
}

.tt-notification-header.success { color: #0F9D58; }
.tt-notification-header.error { color: #d32f2f; }
.tt-notification-header.confirm { color: #1a1a1a; }
.tt-notification-header.info { color: #0288d1; }

.tt-notification-body {
    padding: 8px 24px 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #444444;
    text-align: center;
}

.tt-notification-footer {
    display: flex;
    border-top: 1px solid #f0f0f0;
}

.tt-notification-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 0;
    line-height: 1;
}

.tt-notification-btn:active {
    background-color: #f8f8f8;
}

.tt-notification-btn.tt-btn-confirm {
    color: #0F9D58;
}

.tt-notification-btn.tt-btn-cancel {
    color: #757575;
    border-right: 1px solid #f0f0f0;
}

/* Ensure buttons don't have default focus outlines on mobile */
.tt-notification-btn:focus {
    outline: none;
}
