body {
  background-color: #1fd655;
}

.companyName {
  color: #032e3e;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.navbuttons {
  text-align: center;
  padding: 10px;
  max-width: 550px;
  margin: auto;
}
.navbuttons1 {
  text-align: left;
  padding-left: 40px;
  max-width: 650px;
  margin: auto;
}

.navbutton {
  background-color: #19646a;
  border: none;
  color: white;
  border-radius: 3px;
  padding: 5px 8px;
  margin-top: 5px;
}

button.whitebtn {
  background-color: white;
  color: black;
}

/* The clock section */

.clock-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100vh;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px; /* Reduced gap between clocks */
  padding: 7 px;
  max-width: 100%;
}

.clock {
  background-color: #19646a;
  padding: 5px; /* Reduced padding */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 7px; /* 15px of margin before, now 7px */
  width: 40%; /* Shrinking to about 50% of original size */
  font-size: 0.5em; /* Further reducing text size */
}

.clock h2 {
  margin-bottom: 0px; /* Smaller margin for the title */
  color: white;
}

.clock p {
  font-size: 1.8em; /* Smaller font size for the provinces and time */
  font-weight: bold;
  color: white;
}

/* Timer Buttons */

.timerButton {
  position: relative;
  padding: 10px 10px 10px 10px;
  font-size: 18px;
  color: #fff;
  background-color: #19646a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  margin: 10px;
}

.timerButton:hover {
  background-color: #0056b3;
}

.timerButton:active {
  transform: scale(0.98);
}

.timerButton.flashing {
  animation: flash 0.5s alternate infinite;
}

@keyframes flash {
  0% {
    background-color: #19646a;
    color: #fff;
  }
  100% {
    background-color: #fff;
    color: #19646a;
  }
}

.sectionTitle {
  text-align: center;
}

.boxstyles {
  border-radius: 20px;
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px 25px;
  background-color: #19646a;
  color: white;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.form-group label {
  min-width: 120px; /* Adjust for your longest label */
  margin-right: 10px;
  text-align: right;
  font-size: 16px;
  font-family: Times, serif;
}
.form-group input {
  min-width: 20 0px; /* Initial size */
  width: auto;
  padding: 1px;
  font-size: 16px;
  font-family: Times, serif;
}
.form-group input[type='text'] {
  transition: width 0.2s; /* Smooth resizing */
}

.infocare {
  list-style: none;
}

.dailySales {
  display: none;
}

.oppFollowUp {
  display: none;
}

.domInfo {
  display: none;
}

.contactList {
  display: none;
}

.displayNone {
  display: none;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  border-radius: 5px;
}

td,
th {
  border: 1px solid lightgray;
  text-align: left;
  padding: 5px;
}

tr:nth-child(odd) {
  background-color: darkslategray;
}

#packageDetailsSummary {
  position: sticky;
  top: 0; /* Sticks the element to the top of the viewport */

  z-index: 1000; /* Optional: to keep it above other elements */
}

/* Modal styles */
.modal {
  display: none; /* Ensures modal is hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px); /* Blur effect for the background */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the modal */
}

.modal-content {
  background-color: #1fd655; /* Modal background color */
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%; /* Modal width takes 80% of the screen */
  max-width: 900px; /* Maximum width for larger screens */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
  overflow-y: auto; /* Adds scrolling if content overflows */
  max-height: 90%; /* Ensures the modal doesn't overflow the screen vertically */
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

/* Table styles */
table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  background-color: #19646a; /* Table background color */
  color: white;
}

th,
td {
  padding: 10px;
  text-align: left;
  border: 1px solid #1fd655;
}

th {
  font-weight: bold;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.copy-date-button {
  margin-left: 10px; /* Adjust the value as needed */
}

.copy-button {
  margin-left: 10px;
  width: 150px; /* Set a fixed width for all buttons */
  display: inline-block;
  text-align: center;
}

.copy-button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy-button-container span {
  flex-grow: 1;
}

.copy-button-container button {
  flex-shrink: 0;
}

.click-to-copy {
  cursor: pointer;
}
