/* styles.css (inside quote directory) */
/* VERSION 13.0 - CLEANED UP */
/* 1. REMOVED: All conflicting notification dropdown, list, and item styles. */
/* 2. All dropdown styling is now exclusively handled by the inline <style> block in header.php to prevent conflicts. */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
    padding-top: 70px;
}

#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(54 6 61 / 10%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 990;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.left-sidebar, .right-sidebar {
    top:calc(var(--header-height) + 14px) !important;
}

#page-overlay.visible {
    display: block;
    opacity: 1;
}

/* Header Styles */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 70px;
    background: linear-gradient(180deg, #25091d 0%, #3d0649 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(91, 31, 74, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    width: 220px;
}

.right-ctas {
    display: flex;
    align-items: center;
}

.header-nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
}

.header-icon:hover {
    color: #ffffff;
}

#status-icon-trigger,
#message-icon-trigger {
    color: #ffc107;
}

.header-icon svg {
    width: 30px;
    height: 27px;
}

.header-icon-container {
    position: relative;
    display: flex;
    align-items: center;
}

.notification-dot {
       position: absolute;
    top: -2px;
    right: -3px;
    width: 10px;
    height: 10px;
    background-color: #ff3459;
    border-radius: 50%;
    border: 2px solid #3d0649;
    display: none;
}

.notification-dot.visible {
    display: block;
}

/* RESTORED: Add to Quote Notification */
.add-to-quote-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #1a0715;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1050;
    font-size: 15px;
    font-weight: 600;
    display: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.add-to-quote-notification.visible {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

main {
    min-height: calc(100vh - 250px);
    padding: 20px;
    position: relative;
    z-index: 1;
    padding: 0;
    margin-top: -32px;
}