
.pub-head{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    position: relative;
}
.pub-head-bg{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(0,0,0,0.01), rgba(0,0,0,1)),url('../pub-bg.png');
    background-size: cover;
    
}
.pub-head h1{
    font-size: 4rem;
    color: aliceblue;
    text-align: center;
    position: relative;
    z-index: 10;
}
.publication{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    position: relative;
    padding: 2%;
}
.pub-list-container{
    display: flex;
    flex-direction: column;
    width: 70%;
    height: auto;
    margin: auto;
    color: aliceblue;
    position: relative;
    z-index: 10;
}
/* Year range header */
.year-range {
    font-size: 1.5em;
    font-weight: 600;
    color: #d63500;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f57927;
    text-transform: uppercase;
}

/* Publication list */
.pub-block {
    list-style-type: none;
    margin-top: 10px;
}

/* Individual publication items */
.pub-block li {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #2a2a2a;
    border-left: 4px solid #f57927;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pub-block li:hover {
    background-color: #333333;
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(255, 204, 102, 0.2);
}

/* Link styling */
.pub-block li a {
    color: #f57927;
    text-decoration: none;
}

.pub-block li a:hover {
    color: #ffcc66;
    text-decoration: underline;
}

/* Bold title */
.pub-block li b {
    font-size: 1.1em;
    color: #ffffff;
}

/*Scroll to top button customization*/
.scroll-content::after{
    border: 5px solid #f57927;
    border-right: transparent;
    border-bottom: transparent;
}
.scroll-arrow{
    color: #f57927;
}
.progress-ring-circle{
    stroke:#f57927;        
}