.btn-add-client {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #292929;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submit, .btn-cancel {
    display: inline-block;
    padding: 10px 40px;
    font-size: 14px;
    background-color: #c89c00;
    border: none;
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accounts a {
    color: #c89c00;
}

.btn-back {
    background-color: #292929;
    color: #ccc;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
    width: 160px;
    text-align: center;
}

.btn {
    background-color: #c89c00;
    color: #292929;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    border-radius: 5px;
    transition: 0.3s;
    min-width: 160px;
    width: 100%;
    box-sizing: border-box;
}

.btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.btn-confirm {
    background-color: #c89c00;
    color: rgb(0, 0, 0);
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-confirm:hover {
    background-color: #c89c00;
}

.btn-small, .btn-filter, .btn-reset {
    display: inline-block;
    padding: 8px 24px;
    font-size: 14px;
    background-color: #c89c00;
    border: none;
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #c89c00;
}

.btn-small.btn-red {
    background-color: #c89c00;
    color: #000;
}

.btn-small.btn-gray {
    background-color: #c89c00;
    color: #000;
}

.btn-small.btn-gray:hover {
    background-color: #c89c00;
}

.btn-small.btn-link {
    background-color: #c89c00;
    color: #000;
}

.btn-primary {
    background-color: #c89c00;
    color: #000;
}

.btn-primary:hover {
    background-color: #b58900;
}

.btn-secondary {
    background-color: #c89c00;
    color: #000;
}

.btn-secondary:hover {
    background-color: #b58900;
}

.primary-btn {
    justify-self: start;
    padding: 14px 30px;
    background: #c89c00;
    color: #1b1b1b;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn:hover {
    background: #dfae11;
    transform: translatey(-1px);
    box-shadow: 0 14px 26px rgba(200, 156, 0, 0.35);
}

.btn-small.btn-danger {
    background-color: #b24040;
    color: #fff;
}

.btn-small.btn-danger:hover {
    background-color: #9a3232;
}

