pre {
    background: #777;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    overflow-x: auto;
    color: #ccc;
    font-weight: bold;
    position: relative;
}

hr {
    border: 0;
    height: 1px;
    background: #bbb;
    margin: 20px 0;
}


#blog-tags ul {
    list-style: none;
    padding: 0;
}

#blog-tags li {
    display: inline-block;
    background-color: #666;
    color: #bbb;
    font-weight: bold;
    padding: 5px 10px;
    margin-right: 8px;
    margin-bottom: 5px;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
}

#blog-tags .tag:hover {
    background-color: #777;
}

.tag {
    transition: transform 0.2s ease-in-out;
}

#blog-tags .tag:hover {
    transform: scale(1.1);
}


img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

#blogs img:hover {
    transform: scale(1.05);
}

.toggle-reading-mode-btn {
    background-color:rgb(213, 174, 15);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-reading-mode-btn:hover {
    background-color:rgb(193, 167, 35);
}

.color-selector-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #333;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-selector-btn:hover {
    transform: scale(1.1);
}

.blog-cover {
    transition: transform 0.3s ease;
}

.blog-cover:hover {
    transform: scale(1.05);
}

#blogs table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

#blogs th, #blogs td {
    padding: 12px;
    border-bottom: 1px solid #3161af;
}

#blogs tr:hover {
    background-color: #888;
    color: #ddd;
}

#blogs th {
    background-color: #1e88ec;
    color: #eee;
}

#blogs a, a:visited {
    text-decoration: underline;
    color: inherit;
}