.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-white {
    background-color: #ffffff;
    border: 1px solid #f9fafb;
    color: #111827;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-white:hover {
    background-color: #f9fafb;
}

.btn {
    border-radius: 8px !important;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn:focus {
    box-shadow: none !important;
}