.apple-button {
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 980px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
}

.apple-button:hover {
    background-color: #0077ed;
}

.apple-button.danger {
    background-color: #ff3b30;
}

.apple-button.danger:hover {
    background-color: #ff453a;
}

.apple-button.secondary {
    background-color: #e4e4e4;
    color: #1d1d1f;
}

.apple-button.secondary:hover {
    background-color: #d9d9d9;
}

.apple-button:disabled {
    background-color: #999999;
    cursor: not-allowed;
    opacity: 0.7;
}
