/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Basic page styling */
.main-content  {
    line-height: 1.6;
    color: black;
        max-width: 1100px;
            margin: auto;
    background-color: white;
/*    background-color: #fff;*/
    font-family: sans-serif;
padding-right: 10px;
padding-left: 10px;
        font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
       margin: 0 auto;
}


/* Main content styling */
main {
   padding: 20px;
  max-width: 1200px;
    margin: 5px auto;
/*    background: red;*/
}

h1, h2, h3 {
    margin-bottom: 5px;
    font-family: 'KabelLTStd-Heavy','Georgia', serif;
}

h2 {
    font-size: 25px;
    
/*    font-family: Helvetica, Arial, sans-serif;*/
}

p {

}

/* Form styling */
/*form {
    background: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
}*/

form label {
    display: block;

    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    display: block;
    padding: 10px;
    background: #35424a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

form button:hover {
    background: #45a049;
}


.loginDiv
{
    margin: auto;
    max-width:800px;
}

 .review_detailbody{
    width:950px;
    margin : auto;
}

.question-section {
    margin: 2px 0;
}

.question-item {
    margin-bottom: 1px;
}

.question-header {
    padding: 2px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 2px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.question-header:hover {
    background-color: #e7e7e7;
}

.question-textarea {
    margin-top: 5px;
    display: none;
}

.question-textarea textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    resize: vertical;
    font-size: 14px;
}
/* General layout and typography */


.review-detail-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.review-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.review-details,
.review-rating,
.review-author {
    margin-bottom: 15px;
    color: #555;
}

.review-images img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.review-content {
    margin-bottom: 30px;
}

.qa-section .question-answer {
    margin-bottom: 20px;
}

.qa-section .question {
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.qa-section .answer {
    margin-left: 20px;
    color: #333;
}

.comments-section {
    margin-top: 30px;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.comment-content {
    margin-bottom: 15px;
}

.replies .reply {
    margin-left: 20px;
    margin-top: 10px;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.reply-meta {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 5px;
}

.reply-form,
.comment-form {
    margin-top: 20px;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

