html {
    scroll-behavior: smooth;
}

body {
    background-image: url('../images/bgdiamond.gif');
    background-repeat: repeat;
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 20px;
}

p {
    font-size: 18px; /* Sets all paragraph text to 18px */
}

h1 {
    color: #000000;
    text-align: center;
}

.content-well {
    max-width: 100%;       /* Match the width you used for the carousel img */
    margin: 10px auto;    /* Centers the block */
    background-color: #f9f9f9; 
    border: 1px inset #808080; 
    padding: 15px;
    text-align: left;     /* Keeps text readable */
}

.carousel-table {
    width: 85%;           /* Slightly wider to account for padding */
    margin: 0 auto;
}

.staff-well {
    max-width: 85%;
    margin: 15px auto;
    background-color: #f9f9f9;
    border: 1px inset #808080;
    padding: 10px;
}

.staff-table {
    width: 100%;
    border: none;
}

.staff-portrait {
    border: 1px solid #000;
    object-fit: cover; 
}

.layout-table {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 3px double #000000;
}

.sidebar {
    width: 150px;
    background-color: #e0e0e0;
    border-right: 2px solid #000000;
    vertical-align: top;
    padding: 15px;
}

.sidebar h2 {
    background-color: #000080; /* Navy Blue */
    color: #ffffff;
    font-size: 12pt;
    padding: 2px;
    border: 2px outset #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.main-content {
    padding: 30px;
    vertical-align: top;
}

.status-terminal {
    background-color: #000000;
    color: #00ff00;
    font-family: "Courier New", Courier, monospace;
    font-size: 8pt;
    border: 2px inset #808080;
    padding: 8px;
    width: 160px; 
    height: 200px;
    
    display: block;           /* Ensures it behaves as a box */
    text-align: left;         /* Forces text to the left */
    overflow-y: auto;
    
    word-wrap: break-word;
    white-space: pre-wrap;
    box-sizing: border-box;   /* Ensures padding doesn't grow the 140px width */
}

.cursor {
    display: inline-block;
    width: 6px;
    height: 10px;
    background-color: #00ff00;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 4s; }
.delay-3 { animation-delay: 5s; }