﻿/* css/modules/header.css */

.header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 10px 40px; /* extend edge spacing */
  box-sizing: border-box;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
}

.header-right {
  display: flex;
  flex-direction: row-reverse; /* Show Login first */
  align-items: center;
  gap: 20px;
}

.header-right a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  padding: 6px 12px;
  transition: background-color 0.2s;
}

.header-right a:hover {
  background-color: #f0f0f0;
  border-radius: 5px;
}

.login-btn {
  background-color: #0099ff;
  color: white !important;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: bold;
}
