body {
    background-color: #000;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    /* Fallback to Arial and sans-serif */
}

/* Navbar Styling */
.navbar {
    padding: 15px 30px;
    background-color: #111;
}

.guides {
    margin-top: 30px;

}

p {
    font-size: 15px;
}

#h1,
h2,
h3 {
    color: red;
}

.guide-item {
    display: flex;
    margin-bottom: 15px;
}

.guide-item img {
    max-width: 80px;
    margin-right: 10px;
}

.guide-item a {
    text-decoration: none;
    color: #f5f5f5;
}

.share-icons {
    margin-bottom: 20px;
}

.share-icons i {
    margin-right: 10px;
    color: #f5f5f5;
}


.content-wrapper {
    padding: 20px;
}

.tags {
    margin-top: 20px;
}

.tag-button {
    margin: 5px 0;
    padding: 5px 10px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 12px;
}

.tag-button:hover {
    background-color: #c0392b;
}

.article-meta {
    font-size: 12px;
    color: grey;
}

/* 
.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    display: inline-block;
}

.suggestion-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.suggestion-item {
    background-color: #1b1b1b;
    border: 1px solid #333;
    padding: 15px;
    width: 30%;
}



.suggestion-item img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #d10000;
    margin-bottom: 10px;
} */

.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    display: inline-block;
}

.suggestion-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.category {
    font-size: 14px;
    font-weight: bold;
    color: #888;
    margin-top: 10px;
}

.title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

@media (max-width: 1024px) {

    .suggestion-item {

        width: 100%;
    }
}

.suggestion-item .category {
    color: #ff3b3b;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.suggestion-item .title {
    font-size: 1rem;
    line-height: 1.4;
}

.reply-section {
    margin-top: 40px;
    border-top: 2px solid white;
    padding-top: 20px;
}

.reply-section h3 {
    color: #ff3b3b;
}





.reply-section form {
    display: flex;
    flex-direction: column;
}

.reply-section textarea,
.reply-section input[type="text"],
.reply-section input[type="email"],
.reply-section input[type="url"] {
    background-color: #1b1b1b;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.reply-section textarea {
    height: 150px;
    resize: none;
}

.reply-section input::placeholder,
.reply-section textarea::placeholder {
    color: #777;
}

.reply-section .row {
    display: flex;
    gap: 15px;
}

.reply-section .row input {
    width: 48%;
}

.reply-section label {
    font-size: 0.85rem;
    color: #ccc;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.reply-section input[type="checkbox"] {
    margin-right: 10px;
}

.reply-section button {
    background-color: #ff3b3b;
    border: none;
    padding: 10px 15px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    width: 150px;
}

.reply-section button:hover {
    background-color: #e00000;
}


/* shadule */


.container {
    width: 100%;
    margin: 0 auto;
}

.tab {
    overflow: hidden;
    background-color: #f1f1f1;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.day-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 10px;
}

.item {
    margin: 10px;
    text-align: center;
}

.item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}


