* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
	background-color: #ffffff;
}

#mainDisplay {
    position: relative;
    top: 0;
    padding-top: 60px;
    left: 0;
    width: 1400px;
    min-height: 100%;
    background: #f0f0f0;
    margin: 0 calc((100vw - 1400px) / 2);
    border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
    box-shadow:
		-2px 0 5px rgba(0, 0, 0, 0.1),
		2px 0 5px rgba(0, 0, 0, 0.1);
}

#blogMain {
    padding: 0 300px;
}

#post-container {
    background-color: #ffffff;
    padding: 30px 80px;
    margin: 0px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    line-height: 1.6;
}

#blog-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
    justify-items: center;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    grid-column: span 2;
    transition: transform 0.2s ease-in-out;
    max-width: 650px;
    width: 100%;
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-date {
    font-size: 14px;
    color: #555;
}

.blog-card-title {
    font-size: clamp(0.9rem, 1.1vw, 20px);
    font-weight: bold;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

.blog-card-description {
    font-size: clamp(0.8rem, 1vw, 18px);
    color: #666;
    line-height: 1.6;
}

.blog-card:hover {
    transform: scale(1.02);
}

.blog-card {
    cursor: pointer;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.crossmark {
    color: #FF4C4C;
    font-weight: bold;
    font-size: 1.2rem;
}

#left-banner {
    position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 0px;
	left: 0;
    width: 300px;
    background-color: #f0f0f0;
    border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
    height: 100%;
    font-size: 20px;
    overflow-y: auto;
	padding-top: 75px;
    box-shadow:
		-2px 0 5px rgba(0, 0, 0, 0.1),
		2px 0 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
    line-height: 1.6;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
}

table td {
    text-align: center;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

article {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

article h1 {
    font-size: 2rem;
    color: #111111;
    text-align: center;
    margin-bottom: 20px;
}

article h2 {
    font-size: 1.6rem;
    color: #0d274a;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

article p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 20px;
}

article ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
    font-size: 1.5rem;
    font-weight: bold; 
}

article ol li {
    margin-bottom: 15px;
}

article ul {
    margin-left: 40px;
    margin-bottom: 20px;
    list-style-type: disc;
    color: #444444;
}

article ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

article strong {
    color: #0d274a;
    font-weight: bold;
}

article em {
    font-style: italic;
    color: #0d274a;
}

article blockquote {
    font-size: 1.1rem;
    color: #333333;
    border-left: 5px solid #aaa;
    padding-left: 20px;
    margin: 30px 0;
    background-color: #f9f9f9;
}

article img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

article a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

article a:hover {
    color: #0056b3;
}

#references {
    margin-top: 40px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

#references h2 {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

#references ul {
    margin-left: 30px;
    list-style-type: disc;
}

#references ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #444444;
}

#references ul li a {
    color: #0d274a;
    text-decoration: underline;
}

#references ul li a:hover {
    color: #0056b3;
    text-decoration: none;
}

@media (max-width: 1440px) {
    #mainDisplay  {
        width: calc(100vw - 20px);
        margin: 0;
    }
    
    #left-banner{
        width: 250px;
    }
    
    #blogMain {
        padding-right: 70px;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 250px;
    }
}

@media (max-width: 1000px) {
    #left-banner{
        width: 0;
    }
    
    #blogMain {
        padding-right: 50px;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
    }
    
    #post-container {
        padding: 30px;
        margin: 0px auto;
        max-width: unset;
    }
}

#cbBanner {
    position: fixed;
    display: inlinee-block;
    bottom: 25px;
	left: 25px;
}
