.gh-issue-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #30363d;
    background-color: #161b22;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.4;
    transition: background-color 0.2s;
    min-width: 200px;
    max-width: 100%;
}

.gh-issue-card:hover {
    background-color: #1c2128;
    border-color: #8b949e;
}

.gh-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #58a6ff;
}

.gh-status-open {
    color: #3fb950;
    font-weight: bold;
}

.gh-status-closed {
    color: #a371f7;
    font-weight: bold;
}

.gh-label {
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 10px;
    border: 1px solid;
    color: #ffffff !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.gh-label {
    font-size: 11px;
    padding: 0 6px;
    border-radius: 10px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.05);
}

.gh-meta {
    font-size: 11px;
    color: #8b949e;
    margin-top: 2px;
}