@charset "UTF-8";

* {
  transition: all 0.3s ease-out;
}

.spinner-container {
    display: none; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Spinner style */
.spinner {
    border: 4px solid transparent; 
    border-top: 4px solid #007bff;  
    border-radius: 50%; 
    width: 40px;  
    height: 40px;  
    animation: spin 1s linear infinite; 
}

/* Animation for spinning */
@keyframes spin {
    0% {
        transform: rotate(0deg); 
    }
    100% {
        transform: rotate(360deg); 
    }
}

#vessel-data-section{
	display:none;
}
.card-title {
   font-size: 1.2rem;
}

.badge {
   font-size: 1rem;
}
             
 
.fleet-header{
   font-size:1.1rem;
   font-weight:bold;
   color: #063182;
}
       
.fleet-scrollHeader,.fleet-scroll-des {
	color: #063182;
	font-weight:bold;
}

.fleet-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  display: block;
  top: 0px;
  position: relative;
  /* max-width: 260px;  */
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 12px 12px ;
  margin: 5px;
  text-decoration: none;
  /* z-index: 0; */
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.fleet-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


@media only screen and (max-width: 950px) {
  .fleet-card {
  display: block;
  top: 0px;
  position: relative;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 15px 12px ;
  margin: 5px;
  text-decoration: none;
  /* z-index: 0; */
  overflow: hidden;
  border: 1px solid #f2f8f9;
  }
}

.details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: bold;
}

.details-btn i {
    display: none; 
    opacity: 0; 
    transform: translateX(-10px);
    margin-left: 5px; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
}

.details-btn:hover i {
    display: inline-block; 
    opacity: 1; 
    transform: translateX(5px);
}

div.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

div.top-bar .left {
  flex: 0 0 auto; 
  margin-right: auto; 
}

div.top-bar .right {
  flex: 0 0 auto; 
  margin-left: auto; 
}

/* .paginate_button.previous,
.paginate_button.next {
  display: none !important;
} */


.stats {
	 font-size: 1.8rem;
}

.badge.box {
 /*  border-radius: 0 !important; */
  padding: 0.5em 0.75em; 
  font-size: 0.85rem;
}

.opr-badge {
background-color: #3F7D58;
color: #fff;
}

.nop-badge{
background-color:  #CF0F47;
color: #fff;

}

.btn-close {
  border: 1px solid #2973B2;
  padding: 5px;
  border-radius: 4px;
  background-color: #fff;
  font-size:0.8rem;
}
.btn-close:hover {
  background-color: #fff;
  border-color: #1f5b99;
  cursor: pointer;
  font-size:0.8rem;
}


