/* General Dashboard Styling */
.dashboard-container {
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  background-color: rgba(0,19,38, 0.2);
}

.dashboard-row {
  display: flex;
  align-items: stretch;
  padding-top: 5px;
  flex: 1;
}

/* Nested Container Styling */
.nested-container {
  background-color: rgba(4, 17, 26, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 0;
  flex: 1;
}

.title {
  font-size: 22px;
  font-weight: bold;
  color: #ff9929;
  text-align: center;
}

/* Column Styling */
.dashboard-col {
  padding: 1.5rem;
  border-radius: 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.observe-col {
  margin-bottom: 1rem;
  padding-top: 35px;
  border-radius: 10px;
  background-color: rgba(4, 17, 26, 0.3);
}

.myobserve-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Button Styling */
.circular-button {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  font-size: 28px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #103e5b !important;
  border: 2px solid #ff9929 !important;
  color: #ff9929 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.circular-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  background-color: #103e5b;
  color: #ff9929;
}

/* Footer Styling */
.footer {
  margin-top: auto;
  background-color: #f8f9fa;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #ff9929;
}

.footer-link {
  text-decoration: none;
  color: #ff9929;
}

.footer-link:hover {
  text-decoration: underline;
}

/* First Row Background Styling */
.firstRow {
  background-color: transparent;
  border-radius: 5px;
  min-height: 200px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.firstRow .nested-container {
  flex: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .nested-container {
    background-color: transparent;
  }

  .firstRow {
    flex-direction: column;
  }

  .observe-col {
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 25px;
    background-color: rgba(4, 17, 26, 0.5);
  }

  .myobserve-col {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .dashboard-col {
    padding: 1rem;
  }

  .nested-container {
    background-color: transparent;
  }

  .observe-col {
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 25px;
    background-color: rgba(4, 17, 26, 0.5);
  }
}
