@import "variables.css";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-color);
    color: var(--text-main);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    padding-bottom: 90px;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
}

nav {
    height: 65px;
    background: var(--cards-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    box-shadow: var(--shadow);
}

.header-title {
    font-size: 22px;
    font-weight: 700;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger-menu {
    width: var(--touch-target);
    height: var(--touch-target);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--text-main);
    border-radius: 10px;
}

.notification button {
    width: var(--touch-target);
    height: var(--touch-target);
    font-size: 20px;
}


.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--cards-bg);
    z-index: 1000;
    transition: .3s ease;
    box-sizing: var(--shadow-hover);
}

.side-menu.open {
    left: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: none;
    z-index: 999;
}

.menu-overlay.show {
    display: block;
}

.menu-header {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
}

.menu-header h2 {
    font-size: 22px;
}

.menu-links {
    padding-top: 10px;
}

.menu-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
}

.menu-links a:hover {
    background: rgba(60, 179, 113, .1);
    color: var(--accent);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.footer-top {
    height: 75px;
    background: var(--cards-bg);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item.active {
    color: var(--accent);
}

.nav-add {
    width: 58px;
    height: 58px;
    margin-top: -35px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-hover);
}

.footer-bottom {
    display: none;
}

input,
select {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: white;
    font-size: 16px;
}

.primary-button {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius);
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 16px;
}
