﻿.search-container {
    position: relative;
    margin-bottom: 1rem;
}

    .search-container .rz-textbox {
        padding-right: 2.5rem;
    }

.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 20px 0;
}

.step {
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: #ccc;
    position: relative;
}

    .step.active {
        background-color: #000;
    }

.navigation-buttons {
    display: flex;
    justify-content: space-between;
}

    .navigation-buttons button {
        padding: 10px 20px;
        margin: 10px;
        border: none;
        border-radius: 4px;
        background-color: #000;
        color: white;
        cursor: pointer;
    }

.invoiceInputs {
    display: flex;
    flex-direction: column;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title, .step-indicator {
    font-size: 1rem;
    white-space: nowrap;
}


.title {
    flex-grow: 1;
    text-align: left;
}

.step-indicator {
    flex-grow: 1;
    text-align: right;
    margin-bottom: 1rem;
}

.card-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.card-radio {
    position: absolute;
    top: 10px;
    left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 165px;
    height: 250px;
    text-align: center;
    padding: 20px;
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.button-group {
    display: inline-flex;
    font-family: sans-serif;
    max-width: 20%
}

.button {
    padding: 10px 20px;
    border: 1px solid #000;
    cursor: pointer;
    transition: background-color 0.3s;
}


    .button.left {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }


    .button.right {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }


    .button.active {
        background-color: #007BFF;
        color: white;
        border-color: #007BFF;
    }


    .button:not(.active):hover {
        background-color: #f0f0f0;
    }

.dropdown {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.amountInputs {
    display: flex;
    align-items: baseline;
    align-content: stretch;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 50%;
}

.client-text-box {
    border-radius: 4px;
}

.custom-label {
    font-size: 16px;
    padding: 8px;
}

.rz-datatable-thead th,
.rz-grid-table thead th {
    border-bottom: none !important;
    border: none !important;
}
