body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #F5F5DC; /* Beige background color */
}

header {
    background-color: #F5F5DC; /* Ensure the header background is the same as the body */
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.container {
    display: flex;
}

.side-panel {
    width: 15%; /* 1/5th of the screen width */
    background-color: #E3D9B0; /* Slightly darker beige */
    padding: 20px;
    text-align: left;
}

.side-panel ul {
    list-style-type: none;
    padding: 0;
}

.side-panel ul li {
    margin: 20px 0;
}

.side-panel ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;   
}

.side-panel ul li a.active {
    background-color: rgb(235, 237, 190);
    color: black;
    width: 108%;
    display: block;
    box-sizing: border-box;
    padding: 10px 20px; /* Adjust padding for the desired look */
}

.content {
    width: 80%;
    padding: 20px;
}

/* --------------------------------------------------Projects Page----------------------------------------------*/
.image-container {
    display: flex;
    justify-content: center;
}

.first-row {
    margin-top: 30px;
}

.second-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.image-container a {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.image-container a:hover img {
    transform: scale(1.05);
    filter: blur(2px); /* Adjust the blur intensity as needed */
}

.image-container img {
    width: 300px;
    height: 300px;
    border: 2px solid #000;
    transition: transform 0.3s, filter 0.3s;
}

.image-container a:hover img {
    transform: scale(1.05);
    filter: blur(2px); /* Adjust the blur intensity as needed */
}

.hover-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-image:hover .hover-caption {
    opacity: 1;
}

.BB {
    height: 500px; /* Adjust this value to lengthen the image vertically */
    width: auto;   /* Maintain aspect ratio */
}

.ProjectsInstruction {
    font-style: italic;
    text-align: center; /* Center the instruction text */
    margin-bottom: 20px; /* Add some space below the instruction */
}
/* -----------------------------------------------------BB Page-------------------------------------------------------*/

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab.active {
    border-bottom: 4px solid black;
    font-weight: bold;
}

.line {
    border-bottom: 1px solid black;
    margin-bottom: 20px;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.code-box {
    background-color: #f4f4f4;
    padding: 10px;
    margin-right: 20px;
    width: 45%;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap; /* Preserve whitespace */
    overflow-x: auto; /* Allow horizontal scrolling if necessary */
}

.caption-box {
    background-color: #e3e3e3;
    padding: 10px;
    width: 45%;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
}


/*--------------------------------------------------Project Management-----------------------------------------------------------*/

#RPETitle {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 22px;
    margin: 5px 0;
}
#RPEsubTitle {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: normal;
    margin: 20px;
}

.RPEMain {
    position: absolute; /* Absolute positioning relative to the nearest positioned ancestor (main) */
    top: 20%; /* Adjust the percentage as needed to control vertical positioning */
    left: 48%; /* Adjust the percentage as needed to control horizontal positioning */
    width: 84%; /* Adjust the width as needed to ensure it fits within the main container */
    text-align: left; /* Align text to the left within this element */
}

.RPESub {
    position: absolute; /* Absolute positioning relative to the nearest positioned ancestor (main) */
    top: 23%; /* Adjust the percentage as needed to control vertical positioning */
    left: 44%; /* Adjust the percentage as needed to control horizontal positioning */
    width: 84%; /* Adjust the width as needed to ensure it fits within the main container */
    text-align: left; /* Align text to the left within this element */
    font-weight: normal
}


.header-image {
    position: absolute; /* Absolute positioning relative to the main container */
    top: 20%; /* Adjust the percentage as needed to control vertical positioning */
    left: 24%; /* Adjust the percentage as needed to control horizontal positioning */
    width: 250px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}



