/* Customer Details Popup Styles */
.customer-details-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.customer-details-popup-content {
  background: white;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  color: #000;
}

.customer-details-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.customer-details-close-btn:hover {
  background: transparent;
}

.customer-details-popup h2 {
  margin-bottom: 20px;
  text-align: center;
}

.customer-form-group {
  margin-bottom: 15px;
}

.customer-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.customer-form-input.customer-form-input.customer-form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #000;
  box-sizing: border-box;
}

.customer-form-input:focus.customer-form-input:focus.customer-form-input:focus {
  border-color: #4caf50;
  padding: 10px !important;
  border: 1px solid #ddd !important;
  background: inherit !important;
  color: #000 !important;
  box-shadow: inherit !important;
}

.customer-form-error {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: 5px;
}

.customer-form-submit-wrapper {
  text-align: center;
  margin-top: 25px;
}

.customer-form-submit-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.customer-form-submit-btn:hover {
  background: #45a049;
}

.customer-form-submit-btn:active {
  background: #3d8b40;
}

.customer-form-error {
	color: #f44336;
	font-size: 0.85rem;
	margin-top: 5px;
	display: block;
}

.form-error {
	color: #f44336;
	font-size: 2rem;
  font-weight: bold;
	margin-top: 5px;
}

.customer-form-input.error-border {
	border-color: #f44336 !important;
	background-color: #ffebee;
}

.customer-form-input {
	transition: border-color 0.3s, background-color 0.3s;
}

.customer-form-input:focus {
	outline: none;
	border-color: #4CAF50;
}
