/* walkthrough_styles.css */
.walkthrough-overlay {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    text-shadow: 0px 0px 0px #000000;
}

.walkthrough-step {
    position: fixed;
    bottom: 0px;  /* Positioned at the bottom like a subtitle */
    left: 50%;
    transform: translateX(0%);
    width: 80%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);  /* Light background to contrast with white text */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    color: black;  /* Ensure the text color is black */
    font-family: Arial, sans-serif;  /* Set a clear and readable font */
}

.walkthrough-step h3 {
    margin-top: 0;
    color: black;  /* Ensure the heading color is black */
}

.walkthrough-step p {
    color: black;  /* Ensure the paragraph text color is black */
    text-shadow: 0px 0px 0px #000000;
}

.walkthrough-step button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;  /* Button text color set to white */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.walkthrough-step button:hover {
    background-color: #0056b3;  /* Darker blue on hover */
}

.highlight {
    border: 3px solid #55b5ff; /* Yellow border to highlight the button */
    background-color: rgba(190, 190, 91, 0.3); /* Light yellow background for emphasis */
    transition: background-color 0.3s ease, border 0.3s ease;
}

/* Increase specificity for the highlight class to ensure it overrides other styles */
.navbar .highlight {
    border: 3px solid #55b5ff; /* Yellow border to highlight the button */
    background-color: rgba(91, 155, 190, 0.8); /* Light yellow background for emphasis */
}

.highlight {
    border: 3px solid #55b5ff; /* Yellow border to highlight the button */
    background-color: rgba(74, 131, 191, 0.8); /* Light yellow background for emphasis */
}
