body {
    padding-top: 56px;
    color: white;
    position: relative;
    overflow-x: hidden;
}
.blur-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://img.freepik.com/free-photo/opened-books-library-table_23-2147767300.jpg') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(10px);
    z-index: -2;
    opacity: 0.8;
}
.full-screen-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.content-box {
    width: 100%;
    max-width: 800px;
    background-color: rgba(33, 37, 41, 0.9);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 1; /* Added to make sure it stays on top */
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}