.services-widget {
    width: 100%;
    gap: 6px;
    display: grid;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
}

.services-widget .service-row {
    background-color: #161c23;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #2f363d;
}

.services-widget .service-row .top .app-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    user-select: none;
}

.services-widget .service-row .top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-widget .service-row .top .project-name {
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
}

.services-widget .service-row .top .project-name:hover {
    text-decoration: underline;
    color: #4493f8;
}

.services-widget .service-row .bottom {
    margin-left: 50px;
    margin-bottom: 5px;
    margin-top: -5px;
}

.services-widget .service-row .bottom .description {
    margin: 0;
    color: #8d96a0;
    max-width: calc(100% - 10px);
}

.services-widget .service-row .top .tag {
    --tag-color: #ffffff;
    color: var(--tag-color);
    font-weight: 400;
    font-size: 0.9em;
    border: 1px solid var(--tag-color);
    border-radius: 1em;
    padding: 1px 5px 2px;
    user-select: none;
}

.services-widget .service-row .bottom .description a {
    text-decoration: none;
    color: #4493f8;
}

.services-widget .service-row .bottom .description a:hover {
    text-decoration: underline;
}