/* ===============================
   General Page Styles
================================== */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ===============================
   Centered Form Container
================================== */
.form-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 30px; /* <- Added for spacing inside the form */
  
}


/* ===============================
   Checkbox
================================== */

input[type="checkbox"] {
  transform: scale(1.3); /* Increase size slightly */
  margin-right: 8px;     /* Optional spacing between checkbox and label text */
  cursor: pointer;
}

/* ===============================
   Input and Select Styling
================================== */
input,
select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

/* ===============================
   Button Styling
================================== */
button {
  width: 100%;
  padding: 12px;
  background: #0077cc;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}

/* ===============================
   Label Styling
================================== */
label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

/* ===============================
   Conditional Sections
================================== */
#moh-options,
#county-options,
#other-org {
  margin-top: 10px;
}

/* ===============================
   Success and Error Messages
================================== */
.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin: 20px auto;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  max-width: 500px;
  text-align: center;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  margin: 20px auto;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  max-width: 500px;
  text-align: center;
}

/* ===============================
   Dashboard Page Styles
================================== */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header,
footer {
  text-align: center;
  padding: 5px;
  background-color: #0077cc;
  color: white;
}

footer {
  margin-top: auto;
}

/* ===============================
   Power BI Embed Container
================================== */
#embedContainer {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

/* ===============================
   Power BI Iframe
================================== */
iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

/* ===============================
   Responsive Tweaks
================================== */
@media (max-width: 768px) {
  .form-container {
    width: 90%;
  }

  iframe {
    height: 1000vh;
  }
}
