/* ModalStyles.css */

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 300px; /* Shrink width */
  height: 200px; /* Shrink height */
  display: flex;
  flex-direction: column;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #007bff; /* Make header border more visible */
  padding: 10px;
  background-color: #f8f9fa; /* Light background for the header */
  font-size: 18px; /* Slightly larger font for header text */
  font-weight: bold; /* Make header text bold */
}

.modal-body {
  flex: 1; /* Allow the body to take up remaining space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
}

.otp-input {
  width: 100%;
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px; /* Smaller font size for input */
}

.submit-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px; /* Smaller font size for buttons */
}

.cancel-button {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px; /* Smaller font size for buttons */
}

.close-button {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #007bff; /* Color of the close button */
}

  