<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.widget.categories {
    width: 440px;
    height: 800px; /* Changed height to 800px */
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Remaining CSS styles remain the same */
.widget.categories h3 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.widget.categories h3::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff6600;
    border-radius: 2px;
}

.widget.categories ul {
    list-style-type: none;
    padding: 0;
}

.widget.categories ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.widget.categories ul li::before {
    content: "\2022";
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.widget.categories ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px; /* Decreased font size */
}

.widget.categories ul li a:hover {
    color: #ff6600;
}
</pre></body></html>