/* global.css */
input:focus {
 
  outline: none !important;
  border-radius: 4px; /* Optional: Adds rounded corners */
}

/* Hide default password reveal icon in Microsoft browsers (Edge/IE) */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

/* Hide default password reveal icon in WebKit browsers (Chrome, Safari, Opera) */
input[type="password"]::-webkit-textfield-decoration-container {
  display: none;
}

/* For additional safety, remove appearance */
input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* global.css */
#root {
  width: 70%;
  margin: 0 auto; /* This centers the element horizontally */
}

.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between label and button */
}

.custom-file-label {
  background-color: #007bff; /* Blue button */
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: inline-block;
}

.custom-file-label:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Hide the default file input */
.file-input {
  margin: 0 15px;  /* Adds space on both left & right */
  padding: 5px; /* Adds some internal spacing */
  cursor: pointer; /* Makes it look clickable */
}
.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between label and button */
}


.custom-file-label {
  background-color: #007bff; /* Blue button */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
   font-size: 14px;
  font-weight: bold;
  font-family: "Arial", sans-serif; /* Change font */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: inline-block;
  border: 2px solid transparent;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.custom-file-label:hover {

  background-color: #0056b3; /* Darker blue on hover */
  border: 2px solid #004085;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* Hide the default file input */
.file-input {
  display: none;
}
/* For web date picker styling */
.date-picker-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.react-datepicker {
  font-family: inherit;
}

.react-datepicker__header {
  background-color: #f0f0f0;
}

.react-datepicker__day--selected {
  background-color: #007bff;
}
.react-datepicker {
  font-family: inherit;
  border-radius: 8px;
  border-color: #ccc;
}

.react-datepicker__header {
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.react-datepicker__day--selected {
  background-color: #007bff;
  color: white;
}

.react-datepicker__day--selected:hover {
  background-color: #0069d9;
}
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9f9f9;
  margin-bottom: 15px;
}

select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.web-calendar {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
}
/* For web input placeholders */
input::placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

/* For web date inputs */
input[type="date"]::placeholder {
  color: #999 !important;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9f9f9;
  border: 1px solid #c0d8d8;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  color: #2c3e50;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width=%2712%27 height=%277%27 viewBox=%270 0 12 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L6 6L11 1%27 stroke=%27%23333%27 stroke-width=%272%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

select:focus {
  outline: none;
  border-color: #00A8A8;
  box-shadow: 0 0 0 2px rgba(0, 168, 168, 0.2);
}

