/* ===== Color Palette: Deep Navy =====
 * --primary:       #1B2A4A  (Deep Navy)     - all interactive elements
 * --primary-hover: #243660  (Navy Light)     - hover states
 * --bg:            #F6F5F3  (Warm Gray)      - page background
 * --success:       #34A853  (Green)          - success
 * --error:         #D93025  (Red)            - error
 * ===================================== */

* {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #1b2a4a;
}

body {
  background-color: #f6f5f3;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* Window Container */
.window-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 95vw;
}

.window-header {
  background-color: #1b2a4a;
  display: flex;
  align-items: center;
}

.window-content {
  flex: 1;
}

.window-footer {
  padding: 15px;
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
  text-align: center;
}

/* Fieldset */
fieldset {
  border: 1px solid rgba(27, 42, 74, 0.2);
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}

legend {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 0 5px;
}

/* Focus */
input:focus,
select:focus {
  border-color: #1b2a4a;
  outline: none;
}

/* Primary Button */
.btn-save {
  font-size: 14px;
  cursor: pointer;
  background-color: #1b2a4a;
  border: none;
  border-radius: 4px;
  color: white;
}
.btn-save:hover {
  background-color: #243660;
}
