@font-face {
  font-family: 'Poppins';
  src: url('https://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmqw.woff2') format('woff2');
}

body{
    background: #eee7de;
}
header{    
    min-height: 165px;
    background: rgba(249,220,161,1);
    background: -moz-linear-gradient(top, rgba(249,220,161,1) 0%, rgba(243,203,146,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(249,220,161,1)), color-stop(100%, rgba(243,203,146,1)));
    background: -webkit-linear-gradient(top, rgba(249,220,161,1) 0%, rgba(243,203,146,1) 100%);
    background: -o-linear-gradient(top, rgba(249,220,161,1) 0%, rgba(243,203,146,1) 100%);
    background: -ms-linear-gradient(top, rgba(249,220,161,1) 0%, rgba(243,203,146,1) 100%);
    background: linear-gradient(to bottom, rgba(249,220,161,1) 0%, rgba(243,203,146,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9dca1', endColorstr='#f3cb92', GradientType=0 );
    border-bottom: 6px solid #2d852f;
}
header .site-title{
    font-size: 60px;
    color: #c67106;
}
header .subtitle{
    font-size: 24px;
    color: #432704;
}
.container{
    max-width: 1340px;
    -webkit-box-shadow: 0px 2px 15px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 15px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 15px -5px rgba(0,0,0,0.75);
}

.white-bg{
    background-color: #fff;
}



/* Form Styling Starts*/
.btn{    
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
}
.btn-primary{
    background-color: #e9d3b8;
    color: #432704;
    border: 1px solid #e9d3b8;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    background-color: #432704;
    color: #e9d3b8;
    border: 1px solid #432704;
}

#backBtn:disabled{
    visibility: hidden;
}

.title-bg{
    background-color: #e9d3b8;
    color: #432704;
}

h3{
    font-size: 30px;
}


/* Login, Signup, Forgot pwd form */

.box{
  padding: 20px 40px 20px 40px;
  margin-bottom: 60px;
  box-shadow: 2px 0px 5px 1px rgba(0,0,0, .45);
}

a{
  color: #000000;
}

/* Responsive Header Styling */
header .site-title {
  font-size: 2rem;
  color: #c67106;
  margin-bottom: 0.5rem;
}

header .subtitle {
  font-size: 1rem;
  color: #432704;
}

.logo-holder img {
  max-width: 100px;
  height: auto;
}

@media (max-width: 768px) {
  header {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .site-detail {
      padding-left: 0;
  }

  .nav {
      margin-top: 1rem;
  }
}

/* Steps Indicator Styling */
.step-indicator {
  margin: 20px 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.step-item {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: none;
  border-radius: 10px; /* Rounded rectangle */
  background: linear-gradient(135deg, #f0f0f0, #dcdcdc); /* Subtle gradient */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.step-item:hover {
  background: linear-gradient(135deg, #d1861f, #c67106); /* Highlighted gradient */
  color: #fff;
  transform: translateY(-3px); /* Slight lift effect */
}

/* Styling for completed steps */
.step-item.completed {
  background: linear-gradient(135deg, #28a745, #218838); /* Green gradient */
  color: #fff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}


.step-item.active {
  background: linear-gradient(135deg, #c67106, #b55a00); /* Active gradient */
  color: #fff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}



/* Responsive Design */
@media (max-width: 768px) {
  .step-item {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 0.8rem;
  }
}

/* Adjust spacing for mobile view */
@media (max-width: 768px) {
  .user-menu {
      margin-top: 20px;
      text-align: center;
  }
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.error{
  color: red;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.navigation-buttons .prev-btn.show {
  visibility: visible; /* Make it visible when needed */
}

.navigation-buttons .next-btn {
  margin-left: auto; /* Push the "Save & Next" button to the right */
}

/* Container Styling */
.uploaded-report-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between elements */
  padding: 10px;
  border-radius: 5px; /* Rounded corners */
}

/* Link Styling */
.uploaded-report-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #007bff; /* Link color */
  font-size: 14px;
  font-weight: 500;
}

/* Attachment Icon */
.attachment-icon {
  margin-right: 5px; /* Space between icon and text */
  font-size: 16px;
  color: #007bff; /* Same as link color */
}

/* Button Styling */
.delete-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 16px;
  color: #dc3545; /* Red color for trash icon */
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.delete-btn:hover {
  color: #a71d2a; /* Darker red on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .uploaded-report-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
  }

  .delete-btn {
      align-self: flex-start;
  }
}

.preloader {
  position: fixed; /* Fixed to the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  z-index: 9999;
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.preloader img {
  width: 100px;
  height: 100px;
  animation: spin 1.5s linear infinite; /* Optional spinning animation */
}

.spinner-border {
  margin-left: 10px;
}


/* Optional spinning animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
