/* Added by Antigravity: Global Button Standard */
.btn-primary-global {
    background: linear-gradient(135deg, #111827, #000000);
    color: #ffffff !important;
    border-radius: 12px;
    padding: 0 24px;
    height: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: inherit;
    text-shadow: none;
}

.btn-primary-global:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: rgba(37, 99, 235, 0.4);
}

.btn-primary-global:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

/* Optional: Icon spacing within button */
.btn-primary-global i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary-global:hover i {
    transform: translateX(3px);
}