/* Core Layout and Typography */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #1f2d3d;
}

body.dashboard-layout {
  display: flex;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}



.container {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 850px;
  width: 100%;
}

/* Forms */
/* Only apply this to text fields and buttons */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="url"],
form input[type="number"],
form textarea,
form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Reset radio buttons */
form input[type="radio"] {
  width: auto;
  padding: 0;
  margin: 0 0.5em 0 0;
  border: none;
}


form button {
  background-color: #003A70;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #002855;
}

/* Waitlist Form Special Layout */
.waitlist-form input,
.waitlist-form button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 15px auto;
  display: block;
}

.waitlist-form button {
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Messages */
.message {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #e0f7fa;
  border-left: 4px solid #007B8A;
}

.subtitle {
  font-style: italic;
  color: #555;
  margin-top: -10px;
  margin-bottom: 20px;
}

/* Lists & Sections */
.benefits,
.pricing {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.benefits li,
.pricing li {
  margin-bottom: 8px;
  line-height: 1.5em;
}

.info-section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.info-section h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #003A70;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #003A70;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #002855;
}

/* Sidebar Navigation */
.sidebar {
  background-color: #000000; /* pure black */
  width: 240px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: width 0.3s;
  overflow: hidden;
}

.sidebar.minimized {
  width: 80px;
}

/* App Logo and Title */
.app-title {
  padding: 20px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nxm-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}

/* Menu Container */
.menu {
  padding-top: 10px;
}

/* Unified Menu Styling */
.dashboard-menu ul,
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-menu li,
.menu li {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-menu li i,
.menu li i {
  width: 24px;
  text-align: center;
  margin-right: 12px;
  font-size: 1.2em;
}

.dashboard-menu a,
.menu a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex: 1;
}

.dashboard-menu a.active,
.menu a.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding-left: 8px;
}

.dashboard-menu a:hover,
.menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding-left: 8px;
}

/* User Footer Area */
.user-section {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #f3f4f6;
}

.sidebar.minimized .user-section span {
  display: none;
}

body.dashboard-layout {
    display: flex;
    margin: 0;
    min-height: 100vh;
}


main {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 40px;
}

hr {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0 20px 0;
}



.radio-group {
  text-align: left;
  display:inline-flex;
  width: 100%;
}

.radio-group label {
}

fieldset {
  text-align: left;
}

