/* GitHub Button Styles */
.github-button-link {
    text-decoration: none;
    margin-left: 10px;
}

.project-actions {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.github-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #24292f;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 40px;
}

.github-button:hover {
    background-color: #2d3339;
    transform: translateY(-2px);
}

.github-button-content {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.github-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.star-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.github-button:hover .highlight {
    transform: translateX(0);
}

.button-text {
    white-space: nowrap;
}

.star-count {
    display: flex;
    align-items: center;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.2);
}