﻿/* =========================================================
   DIVM TOPBAR
   ========================================================= */

.divm-topbar {
    height: 78px;
    background: white;
    border-bottom: 1px solid var(--divm-border);
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================================================
   LEFT
   ========================================================= */

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-page-title {
    display: flex;
    flex-direction: column;
}

.page-title-main {
    font-weight: 700;
    font-size: 18px;
}

.page-title-subtitle {
    color: var(--divm-muted);
    font-size: 11px;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--divm-border);
    background: white;
    border-radius: 10px;
    color: #64748b;
    position: relative;
    transition: .2s;
}

    .topbar-icon-btn:hover {
        background: #f1f5f9;
        color: var(--divm-primary);
    }


/* =========================================================
   NOTIFICATIONS
   ========================================================= */

.notification-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
}


/* =========================================================
   USER
   ========================================================= */

.topbar-user {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: 8px;
    padding-left: 15px;
    border-left: 1px solid var(--divm-border);
    cursor: pointer;
}

.topbar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.topbar-user-info {
    display: flex;
    flex-direction: column;
}

    .topbar-user-info strong {
        font-size: 13px;
    }

    .topbar-user-info span {
        font-size: 10px;
        color: var(--divm-muted);
    }

.user-chevron {
    color: #94a3b8;
    font-size: 10px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--divm-border);
    background: white;
    border-radius: 10px;
    color: var(--divm-text);
}


/* =========================================================
   COMING SOON MODAL ICON
   ========================================================= */

.coming-soon-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--divm-primary);
    font-size: 25px;
}
