.main-div{
        padding-bottom: 50px;
}
.profile-wrapper{
  font-family: 'Inter', sans-serif;
  max-width:420px;
  margin:20px;
  background:#fff;
  border-radius:14px;
  padding:20px 18px 30px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.profile-title{
  text-align:center;
  font-weight:600;
  font-size:1.2rem;
  color:#af1318;
  margin-bottom:20px;
}

.form-label{
  font-size:0.8rem;
  color:#6b7280;
  margin-bottom:4px;
}

.custom-input{
  border-radius:10px;
  border:1px solid #e5e7eb;
  padding:11px 12px;
  font-size:0.9rem;
}

.custom-input:focus{
  border-color:#af1318; 
  box-shadow:0 0 0 2px rgba(0,121,158,.15);
}

hr{
  border:none;
      border-top: 1px solid #99a7c1;
  margin:20px 0;
}

.submit-btn{ 
  background:#af1318;
  color:#fff;
  border-radius:12px;
  padding:12px;
  font-weight:500;
  transition:.3s;
}

.submit-btn:hover{
  background:#FAB600;
  color:#000;
}

.cam-btn{
    background: var(--blue);
    color: #fff;
}

.visit-tabs .nav-link{
  border-radius:14px;
  color:#333;
}

.visit-tabs .nav-link.active{
  background:var(--blue);
}

.visit-card{
  background:#fff;
  border-radius:14px;
  padding:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  cursor:pointer;
}

.card-right{
  display:flex;
  align-items:center;
  gap:6px;
  color:#1e88e5;
  font-weight:500;
}

.arrow{
  transition:0.3s ease;
  font-size:18px;
}

.visit-card.active .arrow{
  transform:rotate(180deg); 
}

.card-body-custom{
  background:#fff;
  padding:15px;
  border-radius:0 0 14px 14px;
  box-shadow:0 6px 12px rgba(0,0,0,0.05);
}

.custom-table{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
}

.action-icon{
  font-size:18px;
  cursor:pointer;
  margin:0 6px;
}

.action-icon:hover{
  transform:scale(1.1);
}

.date-range{
    justify-content: space-around;
    align-items: center;
    display: flex;
    gap: 20px;
    margin: 10px 0px;
}

.search-box {
    position: relative;
    /*max-width: 300px;*/
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
}
 
.search-input {
    padding-left: 38px;
    border-radius: 25px;
    height: 42px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #af1318;
    box-shadow: 0 0 0 2px rgba(0, 121, 158, .15);
}

.required-star{
    color:red;
}