body {
	background-color: #e1f5ec;
	color: #333;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-family: 'inter', sans-serif;
}

.container-fluid {
	padding: 5px 20px;
}
/* === Navbar Styles === */
.navbar {
    background-color: #00384f	 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-brand .title {
    font-size: 1.5rem !important;
	color: #ffffff;
	font-weight: 600;
	font-family: 'inter', sans-serif;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 15px;
    font-family: 'inter', sans-serif;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;  /* Smooth color transition */
}

.navbar-nav .nav-link:hover {
    color: #0fcc7c !important;
    font-weight: 600;
    text-decoration: none;
    transform: scale(1.05);
}

.navbar-nav .nav-link:active {
    color: #0fcc7c !important;
    text-decoration: none;
}

/* === Main Content === */
main {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #f8f9fa;
    min-height: 75vh;
}



.login-container {
	max-width: 400px;
	margin: 5rem auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
	padding: 2rem;
}

.login-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.login-header i {
	font-size: 2.5rem;
	background-color: #28a745;
	color: white;
	padding: 1rem;
	border-radius: 50%;
}

.form-control {
	border-radius: 0.5rem;
}

.btn-green {
	background-color: #0fcc7c;
	color: white;
	border-radius: 0.5rem;
}

.btn-green:hover {
	background-color: #00384f;
	color: white;
}

.text-green {
	color: #28a745;
}

.footer {
	background-color: #00384f;
	color: #d6d6d6;
	padding: 2rem 1rem;
	margin-top: 5rem;
}

.footer a {
	color: #28a745;
}

.footer a:hover {
	text-decoration: underline;
}

.footer h5 {
	color: white;
	margin-bottom: 1rem;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.4));
    z-index: 1;
}

/* Loader spinner */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #28a745;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === Hero Section === */
.row.mb-5.align-items-center h2 {
    color: #00384f;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'inter', sans-serif;
}

.row.mb-5.align-items-center p {
    font-size: 1rem;
    color: #555;
}

/* Hero image overlay */
.gradient-overlay {
    border-radius: 8px;
    background: linear-gradient(to right, rgba(0, 56, 79, 0.2), rgba(0, 56, 79, 0.5));
    z-index: 1;
}

/* === Nav Pills Section === */
.nav-pills .nav-link {
    background-color: #ffffff;
    border: 1px solid #0fcc7c;
    color: #0fcc7c;
    border-radius: 20px;
    font-weight: 500;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: #0fcc7c;
    color: #ffffff;
    font-weight: 600;
}

/* === Forms === */
form .form-group label {
    font-weight: 600;
    color: #00384f;
}

form .form-control {
    border-radius: 0.4rem;
    border: 1px solid #ccc;
}

/* === Prediction Section === */
#responsive-table-container {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 56, 79, 0.1);
    border-radius: 0.5rem;
    min-height: 200px;
    font-family: 'inter', sans-serif;
}

/* === Insights Section === */
#responsive-container {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 56, 79, 0.1);
    font-family: 'inter', sans-serif;
}

/* Section Headers */
h3 {
    color: #00384f;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: #0fcc7c;
    border-color: #0fcc7c;
    border-radius: 0.5rem;
}

.btn-primary:hover {
    background-color: #00384f;
    border-color: #00384f;
}

/* Small spacing fix */
.mt-40 {
    margin-top: 40px;
}



.custom-modal {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 15px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #003B5C;
}

.modal-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.custom-btn {
  background-color: #0fcc7c;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #002944;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.form-group label {
  font-weight: 500;
  color: #003B5C;
}

.hero-section {
    align-items: flex-start;
}

.hero-section h2 {
    font-size: 2rem;
    line-height: 1.4;
}

.hero-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.hero-image-container {
    height: auto;
    min-height: 250px;
    max-height: 350px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.08);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 12px;
    z-index: 1;
}

@media (max-width: 768px) {
  .position-absolute {
    position: static !important;
    margin-top: 1rem;
  }
}


div.dt-processing {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none;
}
div.dt-processing > div {
    display: none !important;
}