
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px) 
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
	
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

 .custom-navbar {
            background-color: #ffffff; /* Change this color to your desired background color */
        }

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/header1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}




.two-column-layout {
    display: flex;
    justify-content: space-between; /* Adjust spacing between columns */
    max-width:	90%; /* Set maximum width for the layout */
    margin: 0 auto; /* Center the layout horizontally */
    padding: 20px;
	position: relative;
   
}

.column {
    flex: 1 1 calc(33.33% - 10px); /* Each column takes up 1/3 of the available space with spacing */
    margin-right: 20px; /* Adjust spacing between columns */
}

.form-column {
    max-width: 100%; /* Allow form column to take full width */
	
}

.map-column {
    flex: 2 1 calc(66.66% - 10px); /* Map column takes up 2/3 of the available space */
    display: flex; /* Ensure SVG map column behaves like a flex container */
    justify-content: center; /* Center content horizontally within map column */
    align-items: center; /* Center content vertically within map column */
	overflow: visible; 
}

.custom-form {
    max-width: 100%; /* Set the desired max width */
    margin: 0; /* Remove default margin */
    padding: 20px;
    border: 1px solid #ccc; /* Optional: Add a border */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visual effect */

    /* Positioning for left side */
    position: relative;
    left: 0;
    transform: translateX(0);
}

.custom-form-instruction {
    margin-bottom: 15px;
}

.custom-form-group {
    margin-bottom: 15px;
}

.sublist {
    list-style: none;
    padding-left: 20px; /* Indent the sublist */
}

.sublist li {
    margin-bottom: 5px;
}

.custom-actions {
    list-style: none;
    padding: 0;
}

.custom-actions li {
    display: inline-block;
    margin-right: 10px;
}

.subregion {
    list-style: none;
    padding-left: 20px; /* Indent the sublist */
}

.subregion li {
    margin-bottom: 5px;
}
.subregion_L {
    list-style: none;
    padding-left: 20px; /* Indent the sublist */
}

.subregion_L li {
    margin-bottom: 5px;
}

.subregion_V {
    list-style: none;
    padding-left: 20px; /* Indent the sublist */
}

.subregion_V li {
    margin-bottom: 5px;
}

.subregion_M {
    list-style: none;
    padding-left: 20px; /* Indent the sublist */
}

.subregion_M li {
    margin-bottom: 5px;
}




.custom-button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
}

.custom-primary {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
}

.custom-fit {
    width: 100%; /* Make buttons take the full width */
}

.custom-fit input[type="button"] {
    width: 100%; /* Ensure the reset button takes the full width */
    box-sizing: border-box;
}






svg path {
	cursor: pointer;
	/**transition: fill 0.3s; /* Add a smooth transition effect */ 
}

/* CSS for the title tooltip */
#tooltip {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    pointer-events: none; /* Prevent tooltip from interfering with mouse events */
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #333;
}


 #legend {
            border: 1px solid #ccc;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 5px;
            margin-bottom: 20px;
			margin-top:20px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            border: 1px solid #888;
            border-radius: 3px;
        }
		#legend h5{
			margin-top:10px;
		}
		#legend a{
			text-decoration: none;
			color: #4a4a4a; /* Dark gray color */
		}

		#legend a:hover {
			color: #06A3DA; /* Darker gray on hover */
		}
		
  .topbar {
            background-color: #343a40; /* Example background color */
            padding: 10px 20px; /* Example padding */
        }
        .topbar-image {
            height: 70px; /* Set the desired height */
            width: auto; /* Allow image width to adjust */
            max-width: 100%; /* Ensure image doesn't exceed container width */
            object-fit: contain; /* Ensure entire image is visible */
        }
		
.custom-text-white{
	font-size:30px;
	color:white;
}	

.custom-text-black{
	font-size:30px;
	color:black;
}	


 #legend2 {
            border: 1px solid #ccc;
            padding: 10px;
            background-color: #ffffff;
            border-radius: 5px;
            margin-bottom: 20px;
			margin-top:20px;
        }



.custom-quote {
  position: relative;
  font-style: italic;
  color: #555; /* Adjust to your preferred color */
  margin: 20px 0;
  padding: 20px 40px;
  border-left: 5px solid #007bff; /* Optional border for a classic blockquote look */
  background-color: #f9f9f9; /* Light background for contrast */
}

.custom-quote p {
  position: relative;
  font-size: 1.25em;
}

.custom-quote p::before {
  content: "“";
  font-size: 3em;
  position: absolute;
  top: -10px;
  left: -30px;
  color: #007bff; /* Color of the quotation mark */
}

.custom-quote p::after {
  content: "”";
  font-size: 3em;
  position: absolute;
  bottom: -10px;
  right: -30px;
  color: #007bff; /* Color of the closing quotation mark */
}

.custom-quote footer, .quote-author {
  text-align: right;
  font-size: 1em;
  font-style: normal;
  color: #555;
  margin-top: 10px;
}


.table-hover tbody tr:hover {
        background-color: #06A3DA;
        color: white;
    }
	
  .table-title {
        font-size: 2rem;
        color: #000000;
        font-weight: bold;
        text-align: left;
        margin-bottom: 20px;
        animation: fadeIn 2s;
    }
	

  /* Filter container styling */
    .filter-container {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    /* Custom dropdown styling */
    .filter-container select {
        border: 2px solid #06A3DA;
        border-radius: 5px;
        padding: 8px 12px;
        font-size: 1rem;
        color: #495057;
        background-color: #fff;
        appearance: none;  /* Hides the default arrow */
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2306A3DA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E');
        background-repeat: no-repeat;
        background-position: right 10px top 50%;
        background-size: 16px 16px;
        transition: all 0.3s;
    }

    /* Hover and focus effects */
    .filter-container select:hover,
    .filter-container select:focus {
        border-color: #007BFF;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        outline: none;
    }

    /* Label styling */
    .filter-container label {
        font-weight: bold;
        color: #06A3DA;
        margin-bottom: 5px;
        display: block;
    }



 /* Floating button container on the left */
    .floating-btns {
        position: fixed;
        bottom: 20px;
        left: 20px; /* Position the buttons on the left side */
        z-index: 1000;
    }

    /* Individual buttons styling */
    .floating-btns .btn {
        margin: 10px 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
    }

    /* Add button */
    .btn-add {
        background-color: #28a745; /* Green */
    }

    /* Edit button */
    .btn-edit {
        background-color: #007bff; /* Blue */
    }

    /* Delete button */
    .btn-delete {
        background-color: #dc3545; /* Red */
    }
	
	
.smaller-text {
    font-size: 60%; /* Adjust this percentage to make it smaller */
    vertical-align: middle; /* Aligns the text with the number */
}

.highlighted-number {
	font-family: 'Staatliches', sans-serif; /* Army-style font */
    
    color: gold; /* Bright text color */
    /*background: linear-gradient(90deg, #FF8C00, #FFD700);*/
	background: linear-gradient(90deg, #0000FF, #FF0000); /* Gradient from blue to red */
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    animation: blink 1.5s infinite; /* Blinking animation */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Slight shadow to give depth */
    transition: transform 0.3s ease, background 0.3s ease; /* Smooth hover transition */
}



 /* Docked floating elements */
  .docked-floating-info-cards {
    position: absolute;
    top: 30px; /* Adjust this to control vertical position inside the container */
    right: 20px; /* Adjust this to control horizontal position inside the container */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between elements */
    
  }

  .docked-floating-info-cards .info-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa; /* Light background color */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    width: 250px; /* Adjust width as needed */

  }

  .docked-floating-info-cards .info-box .icon {
    background-color: #007bff; /* Primary color for icon background */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    font-size: 24px;
  }

  .docked-floating-info-cards .info-box .text-content {
    display: flex;
    flex-direction: column;
  }

  .docked-floating-info-cards .info-box .text-content h5 {
    margin: 0;
    font-size: 16px;
    color: #333; /* Adjust text color */
  }

  .docked-floating-info-cards .info-box .text-content h1 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #007bff; /* Adjust value color */
  }
  
 
 .newsblog-img {
    width: 100%; /* Keep full width responsiveness */
    height: 280px; /* Set a fixed height */
    overflow: hidden; /* Hide overflow for larger images */
    position: relative;
}

.newsblog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without stretching */
    object-position: center; /* Center the image within the container */
}


.dashboard-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Unique class for the logo image */
.account-logo-unique {
    width: 150px; /* Adjust this size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 5px; /* Space between image and text */
	
}

/* You can adjust these values to control the size and spacing further */

/* Text styling */
.logo-name {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
}



.consortia-stats {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Stat Blocks with Circle Background Colors */
.stat-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    color: #fff; /* White text for contrast */
    width: calc(33% - 20px); /* Default width */
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Color Classes Inspired by Circles in the Logo */
.pink-circle {
    background-color: #eb5a94; /* Pink */
}

.red-circle {
    background-color: #e74c3c; /* Red */
}

.purple-circle {
    background-color: #9b59b6; /* Purple */
}

.orange-circle {
    background-color: #f39c12; /* Orange */
}

.green-circle {
    background-color: #2ecc71; /* Green */
}

.blue-circle {
    background-color: #3498db; /* Blue */
}

.stat-value {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff; /* White label for consistency */
}

/* Responsive Design: Adjust stat block width on smaller screens */
@media (max-width: 1024px) {
    .stat-block {
        width: calc(50% - 20px); /* Two blocks per row on medium screens */
    }
}

@media (max-width: 768px) {
    .stat-block {
        width: calc(100% - 20px); /* One block per row on small screens */
    }
}





/* Styling for the table title -----------------------------------------------------------------------------------------------*/
.table-startup {
    font-size: 28px; /* Larger font size to make the title stand out */
    font-weight: 700; /* Bold font */
    color: #2c3e50; /* Dark color for contrast */
    text-align: center; /* Center the title */
    margin-bottom: 20px; /* Add space below the title */
    letter-spacing: 1px; /* Slight letter spacing for modern look */
    position: relative; /* For the underline effect */
    padding-bottom: 10px;
}

/* Underline effect */
.table-startup::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
    bottom: 0;
    width: 100px; /* Set width of the underline */
    height: 4px; /* Thickness of the underline */
    background-color: #3498db; /* Blue underline to match the color scheme */
    border-radius: 2px; /* Slight rounding on the edges */
}

/* Optional: Subtle shadow for a professional effect */
.table-startup {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styling for the table title -----------------------------------------------------------------------------------------------*/



/* Modal styling */
.optionsModal-unique {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 100; /* On top */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7); /* Darker background for emphasis */
}

.modal-content-unique {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2); /* Softer shadow */
    text-align: center;
    width: 320px;
    animation: modalFadeIn 0.3s ease-out; /* Smooth fade-in effect */
}

/* Modal fade-in animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Close button styling */
.close-unique {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-unique:hover {
    color: #e74c3c; /* Red color on hover */
}

/* Modal heading */
.modal-title-unique {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

/* Buttons inside modal */
.modal-btn-unique {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle; /* Ensure vertical alignment */
    line-height: 1.5; /* Adjust line height to center text vertically */
    font-size: 16px; /* Adjust font size if needed */
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    height: 50px; /* Adjust to your preference */
}

.modal-btn-unique:hover {
    background-color: #0056b3;
}


.modal-btn-unique:hover {
    background-color: #f39c12; /* Darker green on hover */
}

/* Responsive modal for smaller screens */
@media (max-width: 480px) {
    .modal-content-unique {
        width: 90%;
    }
}




/* General form layout styling */
.filter-form-unique {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
	text-align: right; /* Ensure elements align right inside the form */
}

.form-group-unique {
    display: flex;
    flex-direction: column;
    width: 30%; /* Adjust based on form layout */
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    width: 100%;
    transition: border-color 0.3s ease;
}

select:focus {
    border-color: #3498db; /* Blue outline on focus */
    outline: none;
}


/* Container for the buttons */
.button-container-unique {
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    gap: 10px; /* Space between buttons */
    margin-top: 10px; /* Space above the buttons */
	width: 100%; /* Ensure it takes full width of its container */
}

/* Styling for individual buttons */
button.filter-btn-unique {
    background-color: #3498db;
    color: #fff;
    padding: 10px; /* Adjust padding to ensure consistent height */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 150px; /* Set a fixed width for all buttons */
    text-align: center;
}

button.filter-btn-unique:hover {
    background-color: #2980b9;
}

/* Responsive styling */
@media (max-width: 768px) {
    .button-container-unique {
        flex-direction: row; /* Keep buttons in a row on small screens */
    }

    button.filter-btn-unique {
        width: 150px; /* Keep the fixed width for buttons on small screens */
    }
}



  .chart-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 40px;  /* Add some space between chart rows */
    }

    .chart-container {
        position: relative;
        width: 48%;  /* Make both charts take up equal width */
        height: 400px;
        margin-bottom: 40px;  /* Space between individual charts */
        background-color: #f7f9fc;  /* Add background to separate the chart area */
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Light shadow for a lifted effect */
        border-radius: 10px;  /* Rounded corners for smooth appearance */
        transition: transform 0.3s ease;  /* Add animation for hover */
    }

    .chart-container:hover {
        transform: translateY(-10px);  /* Subtle lift on hover */
    }
	.chart-container canvas {
    width: 100% !important;  /* Force the canvas to use all available width */
    height: 100% !important; /* Force the canvas to use all available height */
	}


    .chart-container_h2 {
        text-align: center;
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;  /* Use a clean font for titles */
    }

    @media (max-width: 768px) {
        .chart-container {
            width: 100%;  /* Make the charts stack vertically on small screens */
            margin-bottom: 30px;
        }
    }
	



 .myreport-sidebar {
            width: 250px;
            background-color: #333;
            color: white;
            padding: 20px;
            height: 100vh;
            position: fixed;
        }
        
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        
        .sidebar ul li {
            margin: 20px 0;
        }
        
        .sidebar ul li a {
            color: white;
            text-decoration: none;
        }
        
        .myreport-content {
            margin-left: 270px;
            padding: 20px;
            flex-grow: 1;
        }
	
	
	





/* Container takes up 90% of the screen width */
.mydashboard-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Two columns layout */
.mydashboard-row {
    display: flex;
    width: 100%;
    justify-content: space-between; /* Ensure left and right columns are balanced */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap; /* No wrap by default, ensures two-column layout on larger screens */
}

/* Left column: 25% */
.mydashboard-col-25 {
    flex: 0 0 25%;
    padding: 10px;
}

/* Right column: 75% */
.mydashboard-col-75 {
    flex: 0 0 75%;
    padding: 10px;
}

/* Sidebar styling */
.mydashboard-sidebar {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.mydashboard-sidebar h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* Stats styling */
.mydashboard-stat-block {
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #eaeaea;
}

.mydashboard-stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.mydashboard-stat-label {
    display: block;
    font-size: 16px;
    color: #555;
}

/* Main content styling */
.mydashboard-main-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.mydashboard-filter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mydashboard-form-group {
    width: 32%; /* Two fields per row */
    margin-bottom: 20px;
}

.mydashboard-form-group label {
    display: block;
    margin-bottom: 5px;
}

.mydashboard-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.mydashboard-filter-btn {
    width: 40%;
    padding: 10px;
    background-color: #06A3DA;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mydashboard-reset-btn {
    width: 40%;
    padding: 10px;
    background-color: #06A3DA;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mydashboard-reset-btn:hover {
    background-color: #0488B0;
}

.mydashboard-filter-btn:hover {
    background-color: #0488B0;
}

/* Table styling */
.mydashboard-table {
    width: 100%;
    table-layout: fixed; /* Ensures fixed width for columns */
    border-collapse: collapse;
    margin-top: 20px;
}

.mydashboard-table th, .mydashboard-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word; /* Wrap text if too long */
}

.mydashboard-table th {
    background-color: #f2f2f2;
	 font-size: 14px;
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick the header to the top */
    z-index: 1; /* Ensure it stays above the table content */
}

.mydashboard-table tr:nth-child(even) {
    background-color: #f9f9f9;
	
}

.mydashboard-table tr:hover {
    background-color: #ddd;
}
.mydashboard-table td {
    font-size: 14px; /* Adjust this value to your preferred font size */
}

/* Make the table scrollable on small screens */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling if needed */
    max-height: 400px; /* Adjust this height as needed */
    overflow-y: auto; /* Enables vertical scrolling */
}

/* Adjust column width based on content */
.mydashboard-table th, .mydashboard-table td {
    min-width: 150px; /* Ensure each column has a minimum width */
}


/* Responsive Design: Stack columns on smaller screens */
@media (max-width: 992px) {
    .mydashboard-col-25, .mydashboard-col-75 {
        flex: 0 0 100%; /* Columns take full width */
        padding: 10px;
    }

    .mydashboard-row {
        flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }

    .mydashboard-filter-form {
        flex-direction: column; /* Stack filter form fields vertically */
    }

    .mydashboard-form-group {
        width: 100%; /* Full width for form fields */
    }
}

@media (max-width: 768px) {
    .mydashboard-stat-value {
        font-size: 20px; /* Adjusted stat font size on smaller screens */
    }

    .mydashboard-stat-label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .mydashboard-stat-value {
        font-size: 18px; /* Further reduced font size for very small screens */
    }

    .mydashboard-stat-label {
        font-size: 13px;
    }
}






#legend .legend-link {
    text-decoration: none;
    color: #4a4a4a; /* Dark gray color */
}

#legend .legend-link:hover {
    color: #06A3DA; /* Darker gray on hover */
}


.startupdate-table {
    table-layout: auto; /* Let the table adjust based on content */
    width: 100%; /* Makes the table fit the container */
    font-size: 0.875rem; /* Smaller font size (14px) */
    white-space: nowrap; /* Prevent text wrapping for horizontal scroll */
}

.startupdate-table th, .startupdate-table td {
    text-align: left; /* Align text to the left */
    padding: 8px; /* Compact padding */
}

/* Make the table container both horizontally and vertically scrollable */
.startupdate-table-responsive {
    max-height: 600px; /* Limit the height to trigger vertical scroll */
    max-width: 100%; /* Ensure the table takes full width of the container */
    overflow-x: auto; /* Horizontal scroll */
    overflow-y: auto; /* Vertical scroll */
}

.startupdate-thead-dark th {
    position: sticky;
    top: 0;
    background-color: #343a40; /* Dark header background */
    z-index: 1;
    font-size: 0.875rem; /* Smaller font size for table header */
    color: white; /* Header text color */
}







/* The Modal (background) */
.modalstartup-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

/* Modal Content */
.modalstartup-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Adjust the width as needed */
}

/* Close button */
.modalstartup-close {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

/* Input fields in the modal */
.modalstartup-modal-content input[type="text"],
.modalstartup-modal-content input[type="email"],
.modalstartup-modal-content input[type="number"] {
    width: 100%; /* Make the input fields full width */
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box; /* Ensures padding doesn't affect the width */
    font-size: 1rem; /* Increase font size for better readability */
}

/* Button styling */
.modalstartup-button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.modalstartup-button#saveChanges {
    background-color: #4CAF50; /* Green */
    color: white;
}

.modalstartup-button#cancelChanges {
    background-color: #f44336; /* Red */
    color: white;
}

.modalstartup-button:hover {
    opacity: 0.9;
}

/* The input field */
.startupdate-search-input {
    width: 100%; /* Adjust the width as needed */
    padding: 12px 40px 12px 12px; /* Add space on the right for the icon */
    font-size: 1.1rem; /* Slightly larger font for emphasis */
    border: 2px solid #3498db; /* Blue border */
    background-color: #f0f8ff; /* Light background */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    box-sizing: border-box; /* Ensure padding doesn’t affect width */
    transition: box-shadow 0.3s ease; /* Smooth transition */
    position: relative; /* Make input a relative container for the icon */
}

.startupdate-search-input:focus {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow on focus */
    outline: none; /* Remove default outline */
}

.feedback-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-button img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feedback-button img:hover {
    transform: scale(1.5);
}

.feedback-message {
    background-color: #f9f9f9;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-size: 14px;
    max-width: 200px;
    animation: fadeIn 0.5s ease forwards;
}

.close-message {
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    margin-left: 10px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

