
body {
    background-color: #000000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    direction: ltr;
}

.sidebar_categories, .card, .card-header, .list-group, .list-group-item {
    background-color: #000000;
}

.bg-steel {
    background-color: #000000;
}

.blog-container {
    font-family: 'Courier New', Courier, monospace;
    max-width: 900px;
    margin: 10px auto;
    padding: 5px;
    background-color: #0d0d0d;
    border: 1px solid #00ff00;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    animation: fadeIn 1.5s ease-in;
}

.blog-container.rtl {
    direction: rtl;
    text-align: right;
}

.blog-container.ltr {
    direction: ltr;
    text-align: left;
}

.blog-title {
    color: #00ff00;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.blog-container small {
    color: #33ff33;
    display: block;
    margin-bottom: 30px;
}

/* Terminal‑style blog body */
.blog-body {
    background-color: #000000;
    color: #00ff00;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #00ff00;
    font-family: 'Amiri', serif;
    font-size: 22px;
    line-height: 1.8;
    white-space: pre-wrap; 
    word-break: break-word;
    overflow-wrap: break-word;
}

.blog-body a {
    color: #00ccff;
    text-decoration: underline;
}

.blog-container.rtl .blog-body {
    direction: rtl;
    text-align: right;
}

.blog-container.ltr .blog-body {
    direction: ltr;
    text-align: left;
}

.blog-body::-webkit-scrollbar {
    height: 8px;
}

.blog-body::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-navigation {
    text-align: center;
    margin-top: 30px;
}

/* Desktop */
.page-navigation a {
    display: inline-block;
    margin: 0 100px;
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-navigation a:hover {
    color: #33ff33;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
    .page-navigation a {
        display: block;
        margin: 115px 0;
    }
}

.blogs-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #00ff00;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.blogs-button:hover {
    background-color: #33ff33;
    color: #000000;
    transform: scale(1.05);
}

.post-meta button#copy-button {
    all: unset;
    display: inline;
    color: #33ff33;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
    border-bottom: 1px dashed #33ff33;
}

.post-meta button#copy-button:hover {
    color: #00ff00;
    border-bottom: 1px solid #00ff00;
}

#copy-button-bottom {
    all: unset;
    cursor: pointer;
    font-weight: bold;
    color: #00ff00;
    border-bottom: 1px dashed #00ff00;
    margin-right: 5px;
}

#copy-button-bottom:hover {
    color: #33ff33;
    border-bottom: 1px solid #33ff33;
}

#copy-button:focus-visible,
#copy-button-bottom:focus-visible {
    outline: 2px dashed #00ff00;
    outline-offset: 2px;
}
