/* ===== GLOBAL RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== BODY ===== */
body {
  font-family: Inter, Arial, sans-serif;
  background: #f4f6f9;
  color: #333;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #007ec5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

/* ===== LOGO CONTAINER ===== */
.sidebar-logo {
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===== LOGO IMAGE ===== */
.sidebar-logo img {
  max-width: 260px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== SIDEBAR NAV ===== */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding-top: 10px;
}

.sidebar-nav a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.sidebar-nav a:hover {
  background: #f15a25;
}

/* ===== MAIN CONTENT ===== */
.main {
  margin-left: 260px;
  padding: 24px;
  min-height: 100vh;
  background: #f4f6f9;
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== FORM ELEMENTS ===== */
input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  font-size: 14px;
}

button {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: #007ec5;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background: #005f95;
}
