#custom-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #8ed1fc;
    color: #fff;
    z-index: 9999;
}
#progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    z-index: 10000; /* Adjust the z-index as needed to ensure it's on top of other elements */
    display: flex;
    justify-content: center;
    align-items: center;
}

#spinner {
    border: 8px solid #f3f3f3; /* Light gray border */
    border-top: 8px solid #3498db; /* Blue border for spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Rotate the spinner */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.top-bar-content {
    padding: 10px;
    position: relative;
}

.top-bar-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}
#progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0073e6; /* Progress bar color */
    z-index: 9998; /* Make sure it's below the top bar */
}

#progress-bar {
    height: 100%;
    width: 0;
    background-color: #fff; /* Progress bar color */
}

.register-login-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #0073e6; /* Choose your button color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

body {
    margin-top: 40px !important; /* Adjust as needed based on your top bar height */
}

/* Add more styles as needed */
