header{
  background: url(../images/dash-bg.png);
  padding: 20px;
  background-size: cover;
  color: #fff;
}
header.header-map{
 background: url(../images/dash_bg.png);
    background-size: cover;
    padding-bottom: 70px; 
}
header .nav-item .nav-link{
  color: #fff;
  display: inline-block;
}
header .nav-links .nav-link{
  background-color: #fff;
    border-radius: 20px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .nav-text .nav-link.active {
  font-weight: 600;
  border-bottom: 3px solid #fff ;
}
header .navbar-nav.nav-text .nav-link {
  padding: 0;
  margin: 8px 20px;
}
header .navbar-nav.nav-links .nav-link {
  padding: 0;
  margin: 5px 0px;
}
.navbar-light .navbar-nav .nav-link.active{
  color: #fff;
  padding: 10px 0px 10px 50px;
}
.navbar-light .navbar-toggler{
  border-color: #fff;
  background-color: #fff;
}
.map-wrapper .main-content{
  position: relative;
    top: -45px;
}
.nsfsiDiv .card-icon img{
  height: 20px;
}
.nsfsiDiv .card-icon{  
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 1.8;
}
.nsfsiDiv .tile-one{
  background-color: #B3EBC6;
}
.nsfsiDiv .tile-two{
  background-color: #D4E1F1;
}
.nsfsiDiv .tile-three{
  background-color: #FFE1B3;
}
.nsfsiDiv .tile-four{
  background-color: #FFCECE;
}
.nsfsiDiv .tile-five{
  background-color: #D4E7C5;
}
.nsfsiDiv .tile-six{
  background-color: #EFDAFF;
}
.nsfsiDiv .tile-one .card-icon{
    height: 40px;
    width: 40px;
    text-align: center;
}
.nsfsiDiv .tile-one .card-icon{
  background-color: #00BB40;
}
.nsfsiDiv .tile-two .card-icon{
  background-color: #1275B3;
}
.nsfsiDiv .tile-three .card-icon{
  background-color: #FF9A00;
}
.nsfsiDiv .tile-four .card-icon{
  background-color: #B52323;
}
.nsfsiDiv .tile-five .card-icon{
  background-color: #729557;
}
.nsfsiDiv .tile-six .card-icon{
  background-color: #C400D5;
}
.nsfsiDiv .card-counter{
  color: #161616;
  font-weight: 600;
}

.input-field input{
    height: 45px;
    width: 60px;
    border-radius: 6px;
    outline: none;
    text-align: center;
    border: 1px solid #C8C8C8;

  }

  .map-filters .form-select{
    border-radius: 7px;
  }

.search-bar span,.search-bar input,.search-bar input:focus{
  background-color: #f0f0f0;
  padding: 4px 10px;
}
.search-btn,.search-btn:hover,.filter-btn,.filter-btn:hover{
      background-color: #0B5607;
    padding: .375rem;   
    display: inline-block;
    border-radius: 7px;
    text-align: center;
    color: #fff;
}
.table-content .table{
  font-size: 14px;
}
.table-content th {
    font-weight: 500;
}
.year-dropdown{
  color: #FFFFFF80;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
}
.report-table th{
  font-weight: 500;
  font-size: 14px;
  color: #697178;
  background-color: #E2E9EC;
  border-bottom: 1px solid #dee2e6!important;
}
.report-table td{
  font-size: 14px;
  color: #333333;
}
.report-status{
       padding: 3px 10px;
    width: 100px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    text-align: center;
}
.approve-status{
  color: #20B2A1;
  background-color: #DDF3F1;
}
.reject-status{
  color: #B22020;
  background-color: #F3DDDD;
}
.warning-status{
  color: #AF8A16;
  background-color: #DEB94333;
}
.progress-status{
  color: #EF5F0F;
  background-color: #F3742D33;
}
.verify-status{
  color: #49890A;
  background-color: #62B31233;
}
.validate-status{
  color: #124FBE;
  background-color: #5085E533;
}
#map {
      height: 455px;
      border-radius: 10px;
      border: 1px solid #ddd;
    }
.leaflet-control-container {
  display: none !important;
}

.task-card label{
  color: #666666;
  font-weight: 600;
  margin-bottom: 7px;
}

/* stepper css */
.progress-wrapper {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

    /* The actual progress bar */
    .progress-container {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin: 10px 0 20px 0;
      min-width: 1280px; /* Keep original design size */
      flex-wrap: nowrap; /* Prevent wrapping on small screens */
    }

    /* Gray background line */
    .progress-container::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 0;
      width: 100%;
      height: 10px;
      background-color: #D9D9D9;
      border-radius: 3px;
      z-index: 0;
    }

    /* Green active line */
    .progress-container::after {
      content: '';
      position: absolute;
      top: 15px;
      left: 0;
      width: var(--progress-percent, 0%); /* Progress percentage */
      height: 10px;
      background-color: #28a745;
      border-radius: 3px;
      z-index: 1;
      transition: width 0.3s ease;
    }

    /* Step container */
    .step {
      position: relative;
      text-align: center;
      z-index: 2;
      flex: 1;
    }

    /* Step circle */
    .step .circle {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #D9D9D9;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #666666;
      outline: 5px solid #F8F8F8;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }

    /* Completed step */
    .step.completed .circle {
      background-color: #0B5607;
      border-color: #0B5607;
      color: #fff;
    }

    /* Completed label */
    .step.completed label {
      color: #333333;
      font-weight: 600;      
    }

    /* Current step (green border only) */
    .step.current .circle {
      background-color: #fff;
      border-color: #0B5607;
      color: #0B5607;
    }

    /* Step labels */
    .step label {
      display: block;
      margin-top: 30px;
      font-size: 14px;
      color: #666666;
      line-height: 1.3;
    }

    /* Completed step arrow */
    .step.completed .circle::after,
    .step.current .circle::after {        
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='46' viewBox='0 0 14 46' fill='none'><path d='M7.34375 0.61084V37.0904' stroke='%230B5607' stroke-width='3.5161'/><circle cx='6.90318' cy='39.7276' r='6.15318' fill='%230B5607'/></svg>") no-repeat center;
      background-size: cover;
    }

    /* Default gray arrow */
    .step .circle::after {
      content: '';
      position: absolute;
      width: 7px;
      height: 25px;
      bottom: -25px;
      left: 40%;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='46' viewBox='0 0 14 46' fill='none'><path d='M7.34375 0.61084V37.0904' stroke='%23D9D9D9' stroke-width='3.5161'/><circle cx='6.90318' cy='39.7276' r='6.15318' fill='%23D9D9D9'/></svg>") no-repeat center;
      background-size: cover;  
    }

footer a{
    font-size: 14px;
}
footer .border{
    border-color: #8F8F8F!important;
}

@media (max-width: 576px) {
	
  header .navbar-nav.nav-text .nav-link {
    margin: 8px 0;
  }
	.navbar-light .navbar-nav .nav-link.active{
  color: #fff;
  padding: 10px 0px;
}
  .mini-container {
    max-width: 100%;
  }
  .step-indicators{
    width: 610px;
    margin: auto;
  }  
  .btn {
    height: 50px;
    width: 150px;
  }
  .border-dashed{
	display: inline-block;
    width: 100%;
    max-width: 90%;
	font-size: 14px;
	padding: 8px 15px;
  }
  .apply-step .step-icon{
  background-color: #fff;
    height: 50px;
    text-align: center;
    line-height: 2.8;
    width: 50px;
    margin: auto;
    border-radius: 50px;
    margin-bottom: 20px;
}
.apply-steps .apply-step{
  position: relative;
}

.apply-area{
  background-image: url(../images/apply-bg.png);  
  background-position: 100%;
  background-size: cover;
}

.apply-area p,.apply-area ol li{
  color: #F9F9FA;
}

.apply-steps .apply-step.step-one .step-icon{
  background-color: #55B24F;
}
.apply-steps .step-nmbr {    
    top: -42px;
    right: 43%!important;
}
    .apply-step .top-arrow img {      
        max-width: 75%!important;
    }  
}
@media (max-width: 767px) {
  header .navbar-nav.nav-text{
    margin-top: 15px;
        border-top: 1px solid #fff;
        border-bottom: 1px solid;
        padding-bottom: 10px;
  }
      header .navbar-nav.nav-text .nav-link {
        margin: 8px 0;
    }
}
@media (max-width: 992px) {
  
    .mini-container {
    max-width: 100%;
  }
  .apply-steps .step-nmbr {    
    top: -45px;
    right: 45%;
}
header.header-map {
  padding-bottom: 40px;
}

}
@media (max-width: 1024px) {
  .crop-table table{
  table-layout: fixed;
}
}

@media (max-width: 1200px) {
  .apply-step .top-arrow img{
        width: 100%;
    max-width: 90%;
  }
  .apply-steps .step-nmbr {    
    top: -45px;
    right: 47%;
}
    .arrow-bottom, .arrow-top {
        display: none;
    }
    .apply-step p {
        display: none;
    }
}