﻿.webhook-docs-banner {
    background: linear-gradient(135deg, #6366f1, #10b981);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .webhook-docs-banner h2 {
        margin: 0 0 10px 0;
        font-size: 24px;
        font-weight: 600;
    }

.docs-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.docs-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .docs-button:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white !important;
        text-decoration: none;
        transform: translateY(-2px);
    }
