/* Global Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace; /* Gives a nice logs/terminal vibe */
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Main Container Layout */
.site-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Left and Right Panel Boxes */
.panel-left, .panel-right {
    border: 2px solid #ffffff;
    padding: 30px;
    box-sizing: border-box;
}

.panel-left {
    flex: 1.2;
    position: relative;
}

.panel-right {
    flex: 0.8;
}

/* Typography & Titles */
h1 {
    text-align: center;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2 {
    font-size: 18px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

p {
    font-size: 14px;
    line-height: 1.6;
}

/* Log Button Links */
.log-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px; /* Space for pagination button */
}

.log-item {
    display: block;
    border: 2px solid #ffffff;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.log-item:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Pagination Buttons */
.pagination-container {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.page-btn {
    border: 2px solid #ffffff;
    padding: 10px 20px;
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    display: inline-block;
}

.page-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Detail Page Specific Layout (Mockup 3) */
.detail-container {
    border: 2px solid #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    position: relative;
    box-sizing: border-box;
}

.detail-header {
    border: 2px solid #ffffff;
    padding: 10px 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 30px;
}

.content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text-content {
    max-width: 60%;
    font-size: 16px;
}

/* Image Box Container */
.image-box {
    border: 2px solid #ffffff;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}