@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');
header {
    background-color: none;
    color: black;
    padding: 2px;
    text-align: left;
    border-bottom: 1px solid #eae9e9;
    display: flex;
    justify-content: space-between;
    /* Align items horizontally with space between */
    align-items: center;
    /* Align items vertically */
}

.logo {
    width: 200px;
    /* Adjust the width as per your logo dimensions */
    height: auto;
    /* Maintain aspect ratio */
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    /* padding: 20px; */
}

.body-content {
    display: flex;
    flex-direction: row;
    padding: 12px 30px;
}

.info {
    flex: 1;
    /* Take up equal space */
    padding-right: 20px;
    /* Add some space between info and form */
    max-width: 380px;
    font-family: 'Inter', sans-serif; /* Apply Inter font family */
    /* Set a maximum width */
}

.form {
    flex: 1;
    /* Take up equal space */
    padding-left: 20px;
    /* Add some space between info and form */
}

.form-group {
    display: inline-block;
    width: 45%;
}

label {
    display: block;
    /* Display labels as block elements */
    margin-bottom: 5px;
    /* Add space between labels */
    color: #65758b;
    /* Set label color */
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif; /* Apply Inter font family */
    /* Set font size */
}

.form-group input,
.form-group select {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 50px;
    padding: 10px;
    font-size: 12px;
    color: #333;
    font-family: 'Inter', sans-serif; /* Apply Inter font family */
}

.form-group select {
    /* Customize appearance to make select look like an input */
    appearance: none;
    background-color: #fff;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"%3E%3Cpath d="M7 10l5 5 5-5z" /%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    /* Adjust the position of the arrow */
    padding-right: 20px;
    /* Add space for the arrow */
    background-size: 35px;
    /* Set the size of the arrow */
}

.form-group select::-ms-expand {
    display: none;
    /* Hide the arrow icon in IE */
}

.form-group:nth-child(odd) {
    margin-right: 10px;
    /* Add space between input groups on odd lines */
}

.button {
    padding: 10px 20px;
    background-color: #0e2ced;
    /* Red background color */
    color: #fff;
    /* White text color */
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .form-group {
        width: 100%;
        /* Full width on smaller screens */
    }
}

.upload-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.upload-button {
    padding: 10px 20px;
    background-color: #d1d1d1;
    color: black;
    border: none;
    border-radius: 8px;
    border-color:  rgba(26, 26, 26, 0.2);
    cursor: pointer;
    width: 118px;
    font-size: 14px;
    white-space: nowrap;
    width: fit-content;
}

#fileInput {
    display: none;
}

#fileName,#fileNameP,#fileName1 {
    margin-left: 10px;
}


.photo-frame {
    border: 2px solid #ccc;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
    cursor: pointer;
    border-radius: 12px;
}

.uploaded-photo {
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

textarea {
    flex: 1;
    resize: vertical;
    width: 91%;
    border: 1px solid #ccc;
    /* Add a grey border */
    border-radius: 8px;
}
.btn_add
{
    width: 91%;
    margin-top: 20px;
    height: 45px;
}
.input_identifier
{
    flex: 1;
    width: 91%;
    box-sizing: border-box;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    color: #333;
}
.input-container {
    position: relative;
    margin-bottom: 20px;
}

.phone-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
}

.phone-input {
    padding-left: 40px !important;
    margin-bottom: -3px !important;
}

.phone-input:focus {
    border-color: #007bff;
    /* Change border color on focus */
}
.custom-textarea {
    width: 92%; /* Make the textarea take up the full width */
    height: 100px; /* Set the height as desired */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    resize: none; /* Disable resizing */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
.custom-textarea::placeholder {
    margin: 10px; /* Add margin to the placeholder text */
}
 .div_identifier
 {
    margin-bottom: 10px;
 }
 .div_span_photo
 {
    margin-bottom: 10px;
 }
 .div_photo
 {
 display: flex; width: 46%;
 margin-top: 10px;
 }
 #flash-message {
    display: none; /* Hide the flash message initially */
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    z-index: 9999; /* Ensure the flash message appears above other content */
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: auto; /* Center the modal horizontally and vertically */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 800px; /* Maximum width */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Box shadow */
    font-family: 'Inter', sans-serif;
  }

/* Close Button */
.close {
  color: #0c0c0c;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Print button */
.print-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}
.return-button {
    background-color: #74787b;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  padding: 8px;
  text-align: left;
  /* border-bottom: 1px solid #ddd; */
}

th {
  /* background-color: #f2f2f2; */
}
.btn_add_modal
{
    width: 100%;
    height: 45px;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    /* padding: 20px; */
}
.container {
    max-width: 800px;
    margin: 0 auto;
}
h1 {
    text-align: center;
}
.info {
    /* margin-bottom: 20px; */
}
.success-message {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    padding: 8px;
    text-align: left;
    /* border-bottom: 1px solid #ddd; */
}
th {
    /* background-color: #f2f2f2; */
}
.print-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.return-button {
   background-color: #74787b;
   color: white;
   border: none;
   padding: 10px 20px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   font-size: 16px;
   border-radius: 5px;
   cursor: pointer;
   margin-top: 20px;
}
.nav-tabs>li.active>a {
    background-color: #21a9e1 !important;
    border-color: #21a9e1 !important;
    color: white;
}

.tooltip21 {
    position: relative;
    display: inline-block;

}

.tooltip21 .tooltiptext21 {
    visibility: hidden;
    width: 120px;
    background-color: #757575;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip21:hover .tooltiptext21 {
    visibility: visible;
}

.btn-default:hover {
    color: #fff !important;
    background-color: #21a9e1 !important;
    border-color: #21a9e1 !important;
}

.btn-default:active {
    color: #fff !important;
    background-color: #21a9e1 !important;
    border-color: #21a9e1 !important;
}

li.active a {
    color: #fff !important;
    background-color: red;
    /*  background-color: rgba(21, 44, 91, 1) !important;
      border-color: rgba(21, 44, 91, 1) !important;*/
}

li.active>a>p {
    color: white !important;
}

li:hover>a>p {
    /* color: white !important; */
}

.tab-content {
    margin-top: 10px;
    height: 750px;
    position: relative;
    padding: 20px;
    /* Height of the button container to avoid overlap */
    border: 1px solid #cdcdcd;
}

.button-container {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: right;
    margin: 10px;
}

.button {
    margin-left: 10px;
}
.filter-buttons {
    display: inline-block;
    margin-left: 10px;
}
.filter-buttons button {
    margin-right: 5px;
}
.filter-date {
    display: inline-block;
    margin-left: 10px;
}
.filter-date input {
    margin-right: 5px;
}
.button:disabled {
    background-color: #959393 !important;
    cursor: not-allowed;
}