.container {
    padding: 20px 20px 100px;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
}

.logo {
    text-align: center;
}

.dropdown-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.dropdown {
    /* flex: 1; */
    position: relative;
}

.dropdown-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.clear-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.send-button {
    margin-left: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.highlight {
    background-color: yellow;
}

#client-details,
#add-client-modal {
    display: none;
    background-color: #fff;
    padding: 0 20px;
    border-radius: 4px;
}

#send-to-clickup-button,
#cancel-edit-button {
    display: none;
}

footer {
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: #f0f0f0;
    font-size: small;
}

.firstStep,
.secondStep {
    font-size: 31px;
    text-align: center;
    opacity: 0.35;
    margin-bottom: -50px;
    font-weight: 100;
}

.secondStep {
    margin-bottom: 0px;
}
#client-id {
    color:white;
}
table {
    font-size: smaller;
}
.inner-3step {
    display: flex;
    flex-direction: column;
}
.form-switch .form-check-input {
    margin-left: 12px!important;
    width: 4em!important;
}
.form-check-input {
    height: 2em;
}