:root {
    --background-blurry: rgba(100, 100, 100, 0.144);
}

/* press release */

.pr-title {
    text-align: center;
    padding: 50px;
}

.pr-title h1 {
    font-size: 2.5rem;
}

.panel-pr {
    padding-top: 5vh;
}

.panel-pr-container {
    /* height: 50vh; */
    display: flex;
    /* justify-content: center; */
    /* padding-top: 5vh; */
    align-items: start;
    min-height: 100vh;
}

.pr-container {
    /* height: 100px; */
    background-color: var(--real-black-navbar);
    padding: 1.5rem;
    border-radius: 10px;
    color: var(--white);
}

.pr-container-title {
    padding-bottom: 0.5rem;
}

.pr-container-title h1 {
    font-size: 1.2rem;
}

.pr-container-body {
    padding-bottom: 1.5rem;
}

.pr-container-links > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.pr-container-links > ul > li {
    margin: 0 5px;
}

.pr-container-links > ul > li > a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.pr-container-links > ul > li > a.prev,
.pr-container-links > ul > li > a.next {
  font-weight: bold;
  background-color: #f0f0f0;
}

.pr-container-links > ul > li > a:hover {
  background-color: #007bff;
  color: white;
}

.pr-container-links > ul > li > a.active {
    background-color: #007bff;
    color: white;
}
  
.pr-container-links > ul > li > a.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pr-container-page {
    color: var(--white);
}

.pr-timeline {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
}

.pr-timeline::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -4px;
}

.pr-timeline-box {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.pr-timeline-box:nth-of-type(odd) {
    left: 0;
}

.pr-timeline-box:nth-of-type(even) {
    left: 50%;
}

/* timeline dot circle  */
.pr-timeline-box::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: transparent;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 4px solid var(--white);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.pr-timeline-box:nth-of-type(odd)::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--background-blurry);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--background-blurry);
}

.pr-timeline-box:nth-of-type(even)::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--background-blurry);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--background-blurry) transparent transparent;
}

.pr-timeline-box:nth-of-type(even)::after {
    left: -16px;
}

.pr-timeline-last {
    color: var(--black);
    flex-direction: column;
    display: flex;
    justify-items: center;
    align-items: center;
    margin-top: 10vh;
    padding: 5px;
    background-color: var(--white);
    border: medium solid var(--white);
    border-radius: 10px;
    width: 175px;
    z-index: 10;
    position: relative; /* Use absolute positioning to place it anywhere */
    top: 92%; /* Move to the middle of the screen */
    left: 50%; /* Move to the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust positioning to exactly center the element */
}

.pr-timeline-last > a {
    text-align: center;
    color: black;
}

.pr-timeline-content {
    color: var(--white);
    padding: 20px 30px;
    background-color: var(--background-blurry);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    border-radius: 6px;
}

  
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .pr-timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .pr-timeline-box {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .pr-timeline-box:nth-of-type(odd)::before, .pr-timeline-box:nth-of-type(even)::before {
        left: 60px;
        border: medium solid var(--background-blurry);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--background-blurry) transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .pr-timeline-box:nth-of-type(odd)::after, .pr-timeline-box:nth-of-type(even)::after {
        left: 15px;
    }

    /* Make all right containers behave like the left ones */
    .pr-timeline-box:nth-of-type(even) {
        left: 0%;
    }
}