/* Banner Container */
#gk-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    padding: 28px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
}

.gk-banner-inner h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.gk-banner-inner p {
    margin-bottom: 24px;
    font-size: 15px;
    color: #444;
}

/* Actions Button Row */
.gk-actions {
    display: flex;
    gap: 10px;
    margin: 24px 0;
}

.gk-btn {
    flex: 1;
    /* Equal width for all 3 across */
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.gk-btn-primary {
    background: #000 !important;
    color: #fff !important;
}

.gk-btn-primary:hover {
    background: #ffcc00 !important;
    /* Footer Gold Accent */
    color: #000 !important;
    transform: translateY(-1px);
}

.gk-btn-secondary {
    background: #000 !important;
    color: #fff !important;
}

.gk-btn-secondary:hover {
    background: #ffcc00 !important;
    /* Footer Gold Accent */
    color: #000 !important;
}

/* Custom Style for Settings - Forced Outlined Look */
#gk-consent-banner .gk-btn.gk-btn-outline {
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
}

#gk-consent-banner .gk-btn.gk-btn-outline:hover {
    background: #000 !important;
    color: #fff !important;
}

#gk-settings-panel {
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
    margin-top: 24px;
}

#gk-settings-panel label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    cursor: pointer;
}

#gk-settings-panel input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#gk-settings-panel #gk-save-selection {
    margin-top: 10px;
    width: 100%;
    flex: none;
    /* Don't grow here */
}

/* Links moved to panel bottom */
.gk-links {
    margin-top: 24px;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
    font-size: 11px;
    display: flex;
    gap: 15px;
}

.gk-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gk-links a:hover {
    color: #000;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 580px) {
    .gk-actions {
        flex-direction: column;
    }

    .gk-btn {
        width: 100%;
        flex: none;
    }

    #gk-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
}

/* Placeholder for blocked content */
.gk-consent-placeholder {
    background: #fcfcfc;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    min-height: 250px;
    border-radius: 8px;
}

.gk-consent-placeholder p {
    margin-bottom: 15px;
}

/* Floating Control Button */
#gk-floating-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999998;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
}

#gk-floating-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#gk-floating-button svg {
    width: 20px;
    height: 20px;
    fill: #000;
}