:root {
    --bg-dark: #0a0c0f;
    --bg-medium: #101418;
    --bg-light: #1a2027;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #003366 100%);
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    cursor: none;
    overflow-x: hidden;
}

.cursor-lightning {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.webhook-dashboard {
    height: 100vh;
    padding: 0;
}

.gradient-main {
    background: var(--gradient-primary);
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
}

.gradient-card {
    background: rgba(47, 54, 64, 0.7);
    backdrop-filter: blur(10px);
    border: none;
    color: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gradient-card:hover {
    transform: scale(1.02);
}

.gradient-btn {
    background: var(--gradient-primary);
    border: none;
    transition: transform 0.3s ease;
}

.gradient-btn:hover {
    transform: scale(1.05);
}

.card-title {
    color: #ffffff;
    font-weight: bold;
}

.log-scroll {
    max-height: 300px;
    overflow-y: auto;
    background-color: rgba(31, 36, 42, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.log-entry {
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.log-entry.success {
    background-color: rgba(0, 255, 0, 0.2);
}

.log-entry.error {
    background-color: rgba(255, 0, 0, 0.2);
}

input, textarea {
    background-color: rgba(64, 68, 75, 0.5);
    border-color: rgba(79, 84, 92, 0.5);
    color: #ffffff;
}