
body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 0;
}
	
  .selected-row {
    background: rgba(77, 255, 181, 0.8) !important;
}

table th {
	background-color:orange;
}

.ui-datepicker{
          margin-top: 0px;
          }

.btn-danger, .btn-primary, .btn-warning, btn-success{
	margin-bottom:5px;
	margin-left:5px;
	margin-right:5px;
}

.form-control{
	margin-bottom:5px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.reportdatepick, .jqdatepick, .acaddatepick{
z-index:100000 !important;
}

.reportdatepick:read-only, .jqdatepick:read-only, .acaddatepick:read-only {
  background: url('common/date-picker.png');
  background-size: 130px, cover;
  background-repeat: no-repeat;
  background-position: right;
  background-color:white;
  color: black;
  cursor:pointer;
}

.table-responsive{
	width:100% !important;
	padding:1px;
	margin:1px;
}

.td-fixed td{
	min-width:180px;
}

.container-main {
  padding-top: 30px;
  width: 97vw;
  margin-right: auto;
  margin-left: auto;
    }

    .form-section {
      background: #eff9fd;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 30px;
    }

    .sec-header {
      font-weight: 600;
      color: #2c3e50;
    }

    label {
      font-weight: 500;
    }

    hr {
      border-top: 1px solid #ccc;
    }

    #addretrow {
      float: right;
      margin-top: 10px;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #007bff;
    }

    #addretrfb {
      margin-top: 20px;
    }

    .custom-footer {
      margin-top: 60px;
      font-size: 14px;
      color: #ffffff;
      text-align: center;
	  background:#000000;
	  padding:10px;
    }

    /* Header section css */

.main-header {
  width: 100%;
}

.header-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 10px auto;
  max-width: 98%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-section h1,
.header-section h4 {
  position: relative;
  z-index: 2;
}

.header-section h1 {
  font-size: 2.7rem;
  color: #002b63;
  margin-bottom: 10px;
  font-weight: 700;
}

.header-section h4 {
  font-size: 1.2rem;
  color: #01414a;
  line-height: 1.6;
  font-weight: 600;
}

/* Collage images */
.collage-img {
  position: absolute;
  width: 50%;
  height: auto;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
  animation: floatZoom 20s infinite alternate ease-in-out;
}

/* Positioning each image differently */
.img1 { top: 0; left: 0; animation-delay: 0s; }
.img2 { top: 0; right: 0; animation-delay: 2s; }
.img3 { bottom: 0; left: 0; animation-delay: 4s; }
.img4 { bottom: 0; right: 0; animation-delay: 6s; }

/* Animation: float and zoom */
@keyframes floatZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.2) translate(-15px, 15px);
  }
  100% {
    transform: scale(1.2) translate(15px, -15px);
  }
}