html {
    height: 98%;
}

body {
    font-family: 'Courier New', monospace;
    height: 100%;
    margin-left: 25%;
    margin-right: 25%;
    background-image: url("Images/stars.gif");
}

.main {
    display: flex;
    height: auto;
}

.loginBox {
    background-color: rgba(255, 255, 255, 0.623);
    border-radius: 10px;
    box-shadow: 4px 4px black;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
}

.loginBoxContent {
    display: flex;
    flex-direction: column;
}

.loginTitle {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 2px;
}

.LoginInputBox {
    display: flex;
    border: 2px ;
}

.LoginInputBoxlabel {
    margin: auto;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    border: 2px ;
}

.loginUsername,
.loginPassword {
    margin: 5px;
    width: 120px;
}

.loginButton,
.signUpButton {
    margin: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

.signUpButton {
    background-color: rgb(202, 131, 0);
}

.header {
    border: 2px solid;
    background-image: url("Images/brick.png");
    text-align: center;
}

.titleBox {
    background-color: rgba(255, 255, 255, 0.623);
    border-radius: 10px;
    box-shadow: 4px 4px black;
    margin-right: 100px;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
}

.titleImg {
    width: 50px;
    margin-top: 10px;
    height: auto;
}

/* SIDEBAR */

.sidebar {
    /*background-color: rgb(255, 208, 0);*/
    background-image: url("Images/brick.png");
    height: 100%;
    width: 250px;
    text-align: center;
}

.sidebarContent {
    color: aliceblue;
    margin: auto;
    margin-left: 5px;
    margin-right: 5px;
}

.sidebarButton {
    width: 100%;
    height: auto;
    display: flex;
}

.sbButton {
    width: 80%;
    margin: auto;
    
}

.sidebarHeader {
    background-color: rgb(255, 255, 255);
}

.sidebarHeadlines {
    border-radius: 10px;
    box-shadow: 2px 4px black;
    background-color: rgb(64, 148, 182);
    max-width: 100%;
    height: auto;
}

img {
    width: 100%;
    height: auto;
}

.sidebarbuttonImg {
    width: 30px;
    height: auto;
}


.sidebarGIF {
    width: 75px;
    height: auto;
}

.sidebarBottomGIF {
    width: 100px;
    margin-top: 10px;
    height: auto;
}

/* Retro Blog Post Styles */
.blog-post {
    background-color: #FFFFFF;
    border: 2px solid #000000;  /* Changed to black */
    padding: 10px;
    margin: 15px;
    font-family: 'Courier New', monospace;
}

.post-header {
    border-bottom: 1px dashed #000000;  /* Changed to black */
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.post-title {
    color: #000000;  /* Changed to black */
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.post-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666666;
    margin-top: 5px;
}

.post-avatar {
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #000080;
    margin-right: 10px;
    object-fit: cover;
}

.post-content {
    line-height: 1.4;
    font-size: 14px;
    min-height: 100px;  /* Add minimum height to content */
}

.post-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.post-author {
    color: #000000;  /* Changed to black */
    font-weight: bold;
}

.post-date {
    color: #666666;
}

/* Review Preview Styles */
.review-preview {
    /* Removed transition and cursor styles */
}

/* Remove the hover transform effect entirely */

.review-read-more {
    display: inline-block;
    margin: 0;
    padding: 1px 6px;
    background-color: inherit;
    color: inherit;
    border: 2px outset;
    font-family: 'Courier New', monospace;
}

/* Remove the hover style for the button */

/* Add general button hover effect */
button:hover {
    background-color: #e0e0e0;
}

/* Ensure sign up button keeps its color on hover */
.signUpButton:hover {
    background-color: rgb(255, 164, 0);
}

/* Review Score Box */
.review-score-box {
    float: right;
    background-color: #000000;
    color: #FFFFFF;
    padding: 8px;
    margin: 0 0 10px 10px;
    text-align: center;
    width: 70px;
    font-size: 12px;
    border: 1px solid #000000;
}

.review-score-box h3 {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.score {
    font-size: 18px;
    font-weight: bold;
    margin-top: 2px;
}

.comment-box {
    margin: 15px 0;
}

.comment-box textarea {
    width: 98%;
    height: 100px;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    padding: 5px;
}

.comment {
    border-top: 1px dashed #000000;
    padding: 10px 0;
    margin-top: 10px;
}

.comment-text {
    margin-top: 5px;
    text-align: center;
    width: 100%;
}

.comment-text p {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-button-container {
    text-align: center;
    margin-top: 15px;  /* Increased margin */
}

.review-read-more {
    display: inline-block;
    margin: 0;
    padding: 1px 6px;
    background-color: inherit;
    color: inherit;
    border: 2px outset;
    font-family: 'Courier New', monospace;
}