
/*
========================================
 BODY BASE STYLES
----------------------------------------
*/
body {
  font-family: 'Share Tech Mono', monospace;
  background: radial-gradient(ellipse at center, #1b2735 0%, #090a0f 100%);
  background-attachment: fixed;
  background-size: cover;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}


/*
========================================
 GLOBAL TYPOGRAPHY & FONT
----------------------------------------
*/
.techfont {
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/*
========================================
 NAVBAR STYLES
----------------------------------------
*/
.custom-navbar {
  background-color: #0d0d0d;
  border-bottom: 1px solid #1a75ff;
  box-shadow: inset 0 -1px 0 #1a75ff;
}


.custom-navbar .container-fluid {
  padding-right: 2rem; /* Prevents last dropdown from overflowing right */
}

.navbar-brand {
  color: #1a75ff !important;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 0 0 5px #1a75ff;
}

/*
========================================
 NAVBAR LINKS & DROPDOWNS
----------------------------------------
*/
.nav-link {
  color: #ccc !important;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #1a75ff !important;
  border-bottom: 2px solid #1a75ff;
}

.dropdown-menu {
  background-color: #111;
  border: 1px solid #1a75ff;
}

.dropdown-item {
  color: #ccc;
}


.dropdown-item:hover {
  background-color: #1a75ff;
  color: #000;
}

/*
========================================
 BACKGROUND & FOOTER
----------------------------------------
*/
.bg-space {
  background: radial-gradient(ellipse at center, #1b2735 0%, #090a0f 100%);
  padding: 60px 20px;
}

.console-footer {
  background-color: #0d0d0d;
  border-top: 1px solid #1a75ff;
  box-shadow: inset 0 1px 0 #1a75ff;
}

.console-warning {
  color: #ff4d4d;
  font-size: 0.95rem;
  background-color: #111;
  padding: 10px;
  border: 1px solid #ff4d4d;
  display: inline-block;
  max-width: 100%;
}

.console-warning .highlight {
  color: #ffae00;
}

/*

========================================
 CARD SCROLLABLE DIRECTORY
----------------------------------------
*/
.card-scrollable {
  max-height: 500px; /* Adjust as needed */
  overflow-y: auto;
  border: 1px solid #1a75ff;
  box-shadow: 0 0 20px #1a75ff;
}

.card-header {
  background-color: #0d0d0d;
  border-bottom: 1px solid #1a75ff;
  font-weight: bold;
  text-transform: uppercase;
}

.card-footer {
  background-color: #0d0d0d;
  border-top: 1px solid #1a75ff;
}

.card-body {
  background-color: transparent;
}

.card-scrollable ul li {
  margin-bottom: 10px;
}

/*
========================================
 COLUMN BOX
----------------------------------------
*/
.column-box {
  background-color: transparent;
  border: none;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}


/* Ensure SYNDICATE FM uses the navbar brand blue and stands out */
.techfont {
  color: #1a75ff;  /* matches .navbar-brand color */
  text-shadow: 0 0 5px #1a75ff;
}

/* Force all radio select dropdowns to be dark and accessible */
#station-select {
  background-color: #0d0d0d;  /* same as radio-container and navbar */
  color: #f0f0f0;  /* high contrast */
  border: 2px solid #1a75ff;
  border-radius: 6px;
  padding: 10px;
}

#station-select option {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

/* Accessible focus outline for keyboard users */
#station-select:focus {
  outline: 2px solid #1a75ff;
  outline-offset: 2px;
}

/* Improve label visibility in dark mode */
label {
  color: #f0f0f0;
}

/*form styling */
/*
========================================
 FORM WRAPPER & INPUTS
----------------------------------------
*/
.form-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.form-wrapper h2 {
  margin-bottom: 30px;
  color: #1a75ff;
}

.form-wrapper label {
  color: #1a75ff;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-wrapper input,
.form-wrapper select {
  background: #000;
  border: 2px solid #1a75ff;
  color: #1a75ff;
  border-radius: 6px;
  padding: 12px 15px;
  width: 100%;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-wrapper input:focus,
.form-wrapper select:focus {
  background: #000;  /* stays black */
  color: #1a75ff;    /* stays neon blue */
  border-color: #ffae00;  /* yellow border */
  box-shadow: 0 0 8px #ffae00;  /* yellow glow */
  outline: none;
}

.form-wrapper .btn {
  background: #1a75ff;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.form-wrapper .btn:hover {
  background: #ffae00;
  box-shadow: 0 0 10px #ffae00;
  transform: translateY(-2px);
}

#output {
  background: #000;
  border: 2px solid #1a75ff;
  color: #1a75ff;
  border-radius: 8px;
  padding: 20px;
  word-break: break-all;
}

/* PAPERWORK */
.form-wrapper {
  max-width: 1800px;
  margin: 40px auto;
  padding: 0 20px;
}

.form-wrapper h2 {
  text-transform: uppercase;
  color: #1a75ff;
  margin-bottom: 30px;
}

.form-wrapper .section-header {
  text-transform: uppercase;
  color: #ffae00;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.form-wrapper label {
  display: block;
  color: #1a75ff;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  background: #000 !important;
  border: 2px solid #1a75ff;
  color: #1a75ff;
  border-radius: 6px;
  padding: 10px 15px;
  width: 100%;
  margin-bottom: 20px;
  transition: border 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.form-wrapper input:focus,
.form-wrapper select:focus,
.form-wrapper textarea:focus {
  background: #000 !important;
  color: #1a75ff !important;
  border-color: #ffae00;
  box-shadow: 0 0 8px #ffae00;
  outline: none;
}

/* Big consistent Debrief + Notes styling */
.form-wrapper .big-textarea {
  min-height: 250px; /* about 3 input heights */
  resize: vertical;
}

.form-wrapper .btn {
  background: #1a75ff;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.form-wrapper .btn:hover {
  background: #ffae00;
  box-shadow: 0 0 10px #ffae00;
  transform: translateY(-2px);
}

#output {
  background: #000;
  border: 2px solid #1a75ff;
  color: #1a75ff;
  border-radius: 8px;
  padding: 20px;
  word-break: break-all;
}

/* === Updated Modal to match footer === */

/*
========================================
 MODALS
----------------------------------------
*/
.modal-content {
  background: #000 !important;
  border: none; /* no full box border */
  border-radius: 8px;
  box-shadow: none; /* no glow, crisp like footer */
}

.modal-title {
  font-family: 'Share Tech Mono', monospace;
  text-transform: uppercase;
  color: #1a75ff;
  font-size: 1.4rem; /* same size as navbar brand */
  font-weight: bold; /* same weight */
}

.modal-header {
  background-color: #0d0d0d; /* same as footer/nav */
  border-bottom: 1px solid #1a75ff; /* same neon blue */
}

.modal-body {
  background: #000; /* same as footer/nav, removed gradient */
  border-top: none;
  border-bottom: none;
  padding: 1.5rem;
  color: #00ccff;
}

.modal-footer {
  background-color: #0d0d0d; /* same as footer/nav */
  border-top: 1px solid #1a75ff;
}


/* buttons */
/* Generic square outline button */
/*
========================================
 BUTTONS (NEST & VARIANTS)
----------------------------------------
*/
.nest-btn,
.nest-btn-red {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid;
  border-radius: 0; /* square */
  background-color: transparent;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Blue version */
.nest-btn {
  color: #1a75ff;
  border-color: #1a75ff;
}

.nest-btn:hover,
.nest-btn:focus {
  color: #ffae00;
  border-color: #ffae00;
  background-color: transparent;
}

/* Red version */
.nest-btn-red {
  color: #ff4d4d;
  border-color: #ff4d4d;
}


.nest-btn-red:hover,
.nest-btn-red:focus {
  color: #ffae00;
  border-color: #ffae00;
  background-color: transparent;
}
/* 
<button class="nest-btn">Blue Button</button>
<button class="nest-btn-red">Red Button</button>
*/
/* FEEDBACK */
/*
========================================
 FEEDBACK COLORS
----------------------------------------
*/
.green-text {
  color: #00ff00;
}

.yellow-text {
  color: #ffff00;
}

.red-text {
  color: #ff0000;
}

.orange-text {
  color: #ffae00;
}

body.training-feedback .form-wrapper {
  max-width: 1600px;
  margin: 40px auto;
  padding: 0 20px;
}


    /*
========================================
 MODULE SELECT COLORS
----------------------------------------
*/
.module-select.green-text { color: #00ff00; }

    .module-select.yellow-text { color: #ffff00; }
    .module-select.red-text { color: #ff0000; }
    .module-select.orange-text { color: #ffae00; }
	
/* CHECKLIST */
/*
========================================
 CHECKLIST STYLES
----------------------------------------
*/
.checklist {
  list-style: none;
  padding: 0;
  max-width: 1000px; /* wider for clarity */
  margin: 0 auto;
  text-align: left;
  user-select: none;
}

.checklist li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  font-size: 1.1rem;
}

.checklist input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.3);
  accent-color: #1a75ff;
}

.checklist label {
  line-height: 1.5;
}

/* Code Red Client Checklist */
/* === FINAL: CODE RED RESCUE CHECKLIST (Readable + Fits) === */

.CRChecklist {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  user-select: none;
}


.CRChecklist li {
  margin-bottom: 10px;   /* slight gap */
  display: flex;
  align-items: flex-start;
  line-height: 1.4;      /* more comfortable */
  font-size: 1rem;       /* larger than 0.85rem */
}

.CRChecklist input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1); /* slightly larger box */
  accent-color: #1a75ff;
}

.CRChecklist label {
  line-height: 1.4;
  user-select: none;
}
/* PLACEHOLDER */
/*
========================================
 PLACEHOLDERS
----------------------------------------
*/
.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
  color: #ccc !important;
  opacity: 1 !important;
  font-style: italic;
}

.form-wrapper input::-webkit-input-placeholder,
.form-wrapper textarea::-webkit-input-placeholder {
  color: #ccc !important;
  opacity: 1 !important;
  font-style: italic;
}

.form-wrapper input::-moz-placeholder,
.form-wrapper textarea::-moz-placeholder {
  color: #ccc !important;
  opacity: 1 !important;
  font-style: italic;
}

.form-wrapper input:-ms-input-placeholder,
.form-wrapper textarea:-ms-input-placeholder {
  color: #ccc !important;
  opacity: 1 !important;
  font-style: italic;
}

.form-wrapper input::-ms-input-placeholder,
.form-wrapper textarea::-ms-input-placeholder {
  color: #ccc !important;
  opacity: 1 !important;
  font-style: italic;
}
/* Casenotes modal */
#caseNotesInput {
  background-color: #000;
  color: #fff;
  border: 1px solid #555;
}


/* 
===========================================
 EQUAL-SIZE RESPONSIVE IMAGES 
 ------------------------------------------
 Use .equal-image on any <img> tag to force 
 a consistent width and height, while keeping 
 the image cropped neatly. Perfect for 
 side-by-side radio art or banners. 
 Adjust the height as needed.
===========================================
*/
.equal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

/* ================================
   REQUEST BUTTON TRANSITION
   --------------------------------
   Fades in/out the request button
   ================================ */

#request-button {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  display: inline-block;
}

#request-button.visible {
  opacity: 1;
  transform: translateX(0);
}