* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: var(--body-font-size, 14px);
    line-height: 1.5;
    color: #333;
    background-color: #f4f4f4;
    margin: 1rem;
}

h3 {
    text-align: center;
    color: #2b2f36;
}

ol {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
}

li {
    background-color: #ffffff;
    border: 1px solid #2b2f36;
    border-radius: 0.375rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

li:hover {
    transform: translateY(-2px);
}

.Box {
    background-color: #ffffff;
    border-radius: 0.375rem;
    padding: 1rem;
}

.button-2 {
    cursor: pointer;
    outline: 0;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    background-color: #2b2f36;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out;
}

.button-2:hover {
    background-color: #3c4043;
}

.pinned-item-desc {
    color: #666;
}

.repo-language-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.text-small {
    font-size: 12px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}