body{
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0px;

    justify-content: center;
    gap: 30px;
    padding: 30px;

    height: 100vh; /* Full height of the screen */
    display: flex;
    flex-direction: column;
}

.container {
    border-image: url("https://dl.dropbox.com/scl/fi/6wo0voidugxmgg0a81v20/lace-border-png-37013.png?rlkey=3hn4k762e8y0v6d2v6mwrtcbr&st=5o8bpex4") 60 fill round; 
    border-width:10px;
    border-style:solid;
    margin: auto;
    width: 500px;
    height: 170px;
    position: relative;
    padding: 5px;
    z-index: 4;
}

.container-one {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    background-color: rgb(147, 148, 161);
    background-repeat: repeat;
    width: auto;
    position: relative;
    left: 1px;
    height: 170px;
    box-shadow: 0 0 8px 8px rgb(0, 0, 0) inset;
    z-index: 5;
}

#name{
    font-family: starborn;
    text-align: center;
    font-size: 2em;
    -webkit-text-stroke: 1px white;
    color: #4b4a4a;
    margin-top: 60px;
    margin-left: 10px;
}


footer .pages a{
    color: #bebaba;
    text-decoration: none;
    padding: 8px 15px;
    display: inline-block;
    font-family:'Courier New', Courier, monospace;
}
footer .pages a.active{
    color: #b69999d7;
    font-family:'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: large;
}
footer .pages a:hover:not(.active){
    background-color: rgba(246, 173, 173, 0.556);
    border-radius: 4px;
}
footer .pages{
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    text-align: center;
    position: fixed;
    display: flex;
    gap: 20px;
    background: rgba(74, 73, 73, 0.489);
    padding: 10px 25px;
    border-radius: 0 5px 20px rgba(0, 0, 0, 0.05);
}


/* The Dashboard Container */
.dashboard {
    display: flex;
    flex: 1;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    overflow-y: hidden; /* Keeps the main page from scrolling */
}

/* Three Columns */
.column {
    flex: 1;
    background: rgba(210, 210, 228, 0.579);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 15px;
    height: 100%;
}

.column h2 {
    text-align: center;
    border-bottom: 2px solid #e0d7c6;
    padding-bottom: 10px;
    color: #363636;
}

/* Scrollable Book List */
.book-list {
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.book-list::-webkit-scrollbar {
    width: 8px;
}
.book-list::-webkit-scrollbar-thumb {
    background: #6c688790;
    border-radius: 4px;
}

/* Book Entry Styling */
.book-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    background-color: #48494b4a;
}

.book-card:hover {
    background-color: #aba3cdd3;
}

.book-card img {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.book-info h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.2;
}

.stars {
    color: #f6cf33;
    font-size: 1.1rem;
    margin-top: 2px;
}

.author{
    margin: 4px 0;
    font-size: 0.9rem;
    color: #0b0b0baa;
    font-style: italic;
}




@font-face {
font-family: kawaii stitch;
src: url(https://dl.dropbox.com/s/yjal3we9j6biyn5/Kawaii%20Stitch.ttf);}
 
@font-face {
font-family: starborn;
src: url(https://dl.dropbox.com/s/l0541on0m5eqvdj/Starborn.ttf);
}
 
@font-face {
font-family: pixel;
src: url(https://dl.dropbox.com/s/kmhe7d3n18vdz5e/w95fa.woff?dl=0);
}
 
@font-face {
src: url(https://dl.dropbox.com/s/ct0s037q78sao3f/Frighted.ttf);
font-family: Frighted;
}
 
@font-face {
src: url(https://dl.dropbox.com/s/ktlx5w7t8gk42nb/SakeMoru-Regular.ttf);
font-family: SakeMoru;
}

@font-face {
font-family: yipes;
src: url(https://dl.dropbox.com/s/qrdm3wived8sm66/Yipes.ttf);
}
 
@font-face {
font-family: fenotype;
src: url(https://dl.dropbox.com/s/klo6yfrf62916qp/02.10FEN.TTF);
}

.dropdown{
    position: relative;
    cursor: pointer;
}
.dropdown button{
    background-color: rgba(103, 84, 115, 0.786);
    color: rgba(250, 248, 248, 0.702);
    padding: 7px 12px;
    border: 1px solid rgb(147, 109, 155);
    border-radius: 5px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 14px;
    cursor: pointer;
}
.dropdown a{
    display: block;
    color: black;
    padding: 5px;
    text-decoration: none;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: small
}
.dropdown .content{
    display: none;
    position: absolute;
    top: 100%;
    background-color: rgba(208, 185, 219, 0.684);
    color: rgb(63, 61, 63);
    backdrop-filter: blur(20px);
    border-radius: 7px;

    min-width: 70px;
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1999;
    box-shadow: 5px 0 15px rgba(0,0,0,0.03);
}
.dropdown:hover .content{
    display: block;
}
.dropdown:hover button{
    background-color: rgba(188, 145, 195, 0.695);
}
.dropdown a:hover{
    background-color: rgba(108, 92, 127, 0.669);
    border-radius: 5px;
}

.top-bar {
    display: flex;
    gap: 30px;            /* Space between the button and the box */
    padding: 10px 20px;
    justify-content: space-between;
    box-sizing: border-box;
    left: 10%;
}

.box1{
    background-color: rgba(47, 41, 57, 0.766);
    color:#f2f7e2b1;
    border: 1px solid #7b7b86ab;
    border-radius: 70px;
    padding: 2px 10px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.9rem;
    white-space: nowrap;
}