﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: var(--background);
    color: var(--text);
}
/*==================================================
    HEADER HUB
==================================================*/

.hub-header {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hub-header-left {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.hub-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hub-user {
    color: #6b7280;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hub-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    background: #ef4444;
    color: #fff;
    transition: .2s;
}

    .hub-logout:hover {
        background: #dc2626;
        color: #fff;
    }

.hub-content {
    min-height: calc(100vh - 64px);
}