/* Style the upload area */
#upload_area {
  border: 2px dashed #007bff; /* Dashed border for drag & drop area */
  background-color: #f0f8ff; /* Light background color */
  color: #007bff; /* Text color */
  text-align: center; /* Center text */
  cursor: pointer; /* Pointer cursor */
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transitions */
}

/* Hover effect for upload area */
#upload_area:hover {
  background-color: #e6f7ff; /* Slightly darker background on hover */
  border-color: #0056b3; /* Darker border on hover */
}

/* Hide the file input */
#logo_file_input {
  display: none; /* Hide the file input */
}

/* Style the preview image */
#logo_preview_container {
  border: 2px solid #ddd; /* Solid border for the preview container */
  padding: 15px; /* Padding around the image */
  border-radius: 8px; /* Rounded corners */
  background-color: #f8f9fa; /* Light background color */
}

/* Style the preview image */
#logo_preview {
  border: 1px solid #ddd; /* Light border around the image */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
.is-preview {
  position: absolute;
  height: 66%;
  width: 100%;
  opacity: 0;
}

.profileTabSection {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.card-header {
  background-color: #ff5e00;
  color: white;
  padding: 15px;
}

.card-header h4,
.card-header h6 {
  margin: 0;
}

.card-body {
  padding: 20px;
}

.form-label {
  font-weight: 600;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}

.form-control:focus {
  border-color: #ff5e00;
  box-shadow: 0 0 0 0.2rem rgba(255, 94, 0, 0.25);
}

.text-danger {
  color: #ff5e00;
}

.upload_area {
  border: 2px dashed #ff5e00;
  border-radius: 8px;
  color: #ff5e00;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.upload_area:hover {
  background-color: #ff5e00;
  color: white;
  border-color: white;
}

#logo_preview_container {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
}

.submitBtn {
  margin-top: 20px;
  text-align: center;
}

.form-btn {
  background-color: #ff5e00;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.form-btn:hover {
  background-color: #e65500;
}

.spinner-border {
   /* border-color: #ff5e00; */
}