/* styles.css */

.logo-container {
    background-color: #ffffff; /* Light gray background */
    /*border: 1px solid #dee2e6; /* Border to separate from content */
    text-align: center; /* Center-align text inside the logo container */
    padding: 10px; /* Padding for spacing */
}

.content {
    background-color: #ffffff; /* White background */
    /*border: 1px solid #dee2e6; /* Border to separate from logo-container */
    padding: 10px; /* Padding for spacing */
    display: flex; /* Flex container for flexible layout */
    flex-direction: column; /* Arrange children vertically */
    justify-content: space-between; /* Space between children */
}

/* Align text within the logo-container */
.logo-title {
    text-align: center;
    color: #65BDA2;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.logo-date {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

.logo-location {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

.custom-logo {
    max-width: 400px;
    max-height: 287px;
    height: auto;
    width: 100%;
}

.custom-form-header {
    font-family: 'Montserrat', sans-serif;
}

/* Ensure the buttons are aligned properly */
.mt-4.d-flex {
    margin-top: auto; /* Pushes the buttons to the bottom of the container */
}

/* Make sure the form-steps container takes available space */
#form-steps {
    min-height: 200px; /* Adjust this based on your content */
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Input Styles */
.form-control {
    background-color: #BDE2D5; /* Light gray background */
    border: 2px solid #65BDA2; /* Light gray border */
    border-radius: 4px; /* Rounded corners */
    font-family: 'Montserrat', sans-serif; /* Font family */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover/focus effects */
    box-shadow: #65BDA2;
}

/* Change background and border on focus */
.form-control:focus {
    background-color: #BDE2D5; /* Light blue background on focus */
    border: 2px solid #65BDA2; /* Blue border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 10px #65BDA2; /* Blue shadow on focus */
}

.form-label {
    color: #65BDA2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

/* Ensure the parent div is flexible and keeps the buttons at the bottom */
#prevNextBtns {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 10px;
}

/* Style for individual button containers */
.button-container {
    flex: 1;
    text-align: center; /* Center align the button within the container */
}

/* Align the previous button container to the left */
#prevBtnContainer {
    text-align: left;
}

/* Align the next button container to the right */
#nextBtnContainer {
    text-align: right;
}

/* Button Container Styling */
.button-container {
    flex: 1;
    text-align: center;
    margin: 0 10px; /* Adding some margin to space out the containers */
}

/* Button Container Styling */
.button-container {
    flex: 1;
    text-align: center;
}

/* Custom Button Styling */
.btn-custom {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px; /* Rounded corners for a pill shape */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #65BDA2 !important;
}

/* Previous Button Styling */
.btn-secondary {
    background-color: #65BDA2 !important;
    border-color: #65BDA2 !important;
    border: none;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #56AE93 !important;
    border-color: #65BDA2 !important;
}

.btn-secondary:active {
    background-color: #56AE93 !important;
    border-color: #65BDA2 !important;
}

.btn-secondary:focus {
    background-color: #56AE93 !important;
    border-color: #65BDA2 !important;
}

/* Next Button Styling */
.btn-primary {
    background-color: #65BDA2 !important;
    border-color: #65BDA2 !important;
    border: none;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #56AE93 !important;
    border-color: #65BDA2 !important;
}

.btn-primary:active {
    background-color: #56AE93 !important;
    border-color: #65BDA2 !important;
}

.btn-primary:focus {
    background-color: #56AE93 !important;
    border-color: #65BDA2 !important;
}

/* General Button Hover Effects */
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Button Active State */
.btn-custom:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #56AE93 !important;
    color: #56AE93;
    border-color: #65BDA2 !important;
}

/* Arrow Icon Styling */
.btn-custom i {
    font-size: 18px;
    margin: 0 8px; /* Add spacing between text and icon */
}

.btn:active {
    background-color: #65BDA2 !important;
    color: #65BDA2;
    border-color: #65BDA2 !important;
}
.btn:hover {
    border-color: #65BDA2 !important;
}
.btn:focus {
    border-color: #65BDA2 !important;
}

/* Specific styling for each button */
#prevBtn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#nextBtn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#prevBtn i {
    margin-right: 10px;
    margin-left: 0; /* Reset left margin */
}

#nextBtn i {
    margin-left: 10px;
    margin-right: 0; /* Reset right margin */
}

/* Ensure buttons have consistent size and positioning */
#prevBtn, #nextBtn {
    min-width: 140px; /* Ensure minimum width */
    height: 45px; /* Standardize button height */
    margin: 5px; /* Add margin for spacing */
    justify-content: center; /* Center text and icon */
}

/* General navigation styles */
.nav-item {
    position: relative;
    text-align: center;
    width: 20%; /* Ensure equal width for each step */
}

/* Pointer events disabled as per your original requirement */
.nav-link {
    pointer-events: none; /* Disable clicking */
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0; /* Add some padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
}

/* Rectangle below each step */
.nav-indicator {
    display: block;
    width: 95%;
    height: 8px; /* Height of the rectangle */
    margin: 0 auto; /* Center the rectangle */
    border-radius: 2px;
    border: 1px solid #65BDA2;
}

/* Style for active steps */
.nav-link.active-step {
    font-weight: bold;
}

.nav-link.active-step .nav-indicator {
    background-color: #65BDA2; /* Active rectangle color (matches your underline color) */
}

/* Style for completed steps */
.nav-link.completed-step {
    font-weight: normal;
}

.nav-link.completed-step .nav-indicator {
    background-color: #65BDA2; /* Completed rectangle color */
}

/* Style for inactive steps */
.nav-link.inactive-step {
    font-weight: normal;
}

.nav-link.inactive-step .nav-indicator {
    background-color: #BDE2D5; /* Inactive rectangle color (matches your underline color) */
}

.custom-train {
    width: 80%;
    max-width: 80%;
}

.popup-message {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #65BDA2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.popup-message.show {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.custom-link {
    color: #65BDA2; /* Replace with your desired hex color code */
}

.custom-link:hover {
    color: #56AE93; /* Optionally, replace with a different color for the hover state */
}

/* Footer styles */
.sub-footer {
    background-color: #f1f1f1;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.additional-link-section a {
    margin: 0 10px;
}

/* Flexbox to keep footer at bottom */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}