:root {
  --primary: #072440;
  --background: #ffffff;
  --accent: #f5f5f5;
  --text: #1e1e1e;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text);
}

header{
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Header Sticky */
.navbar {
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: auto;
    height: var(--header-height);
}

.restaurant-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.icon-btn i{
    margin-right: 5px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--background);
  border-right: 1px solid #ccc;
  box-shadow: 0px 0 10px rgb(153 153 153);
  padding: 1rem;
  transform: translateX(-110%);
  transition: all 0.3s ease;
  z-index: 10;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
}

.sidebar-section {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.sidebar-section h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary);
}

.sidebar-section a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 0.4rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.sidebar-section a:hover {
  color: var(--primary);
}


.login-form {
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    height: 100%;
}
button.google-auth {
    background: #fff;
    border: none;
    color: var(--button-background);
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: row;
}

button.google-auth div{
    font-size: 1.3rem;
}