.members .search-bar {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
    justify-content: space-between;
}

.members .search-container {
    justify-content: left;
}

.members input,
.members select {
    background-color: #F3EEEE;
    border-radius: 10px;
}

.members input::placeholder,
.members select {
    color: #ADAAAA;
}

.members select option {
    color: #333;
}

.members .search-bar input, .members .search-bar select {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.member.item {
    border-top: 1px solid #ddd;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member:first-child {
    border-top: none;
}

.member-logo {
    margin-right: 20px;
}

.member-logo img {
    width: 50px;
    height: 50px;
}

.member-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.member-info h4 {
    margin-bottom: 19px;
    font-size: 15px;
    color: #FEC00F;
    text-transform: uppercase;
}

.member-info .member-name {
    font-weight: 500;
}

.member-info .member-name,
.member-info .member-code {
    margin-bottom: 11px;
}

.member-info .member-code {
    font-weight: 300;
}

.member-info .member-status {
    font-weight: bold;
}

.member-info .active {
    color: #00D165;
}

.member-info .inactive {
    color: #B62422;
}

.member-info .suspended {
    color: #FEC00F;
}

.member-actions {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 24px;
    row-gap: 12px;
}

.member-actions span {
    color: #01195F;
    font-weight: 600;
}

.member-actions .address {
    margin-bottom: 16px;
}

.member-actions .website {
    font-weight: 300;
}

@media (width >= 768px) {
    .members .search-bar {
        flex-direction: row;
    }

    .members input,
    .members select {
        max-width: 275px;
    }

    .member.item {
        flex-direction: row;
        row-gap: 45px;
        padding: 27px 0;
        align-items: center;
    }

    .member-actions {
        text-align: right;
    }

    .member-info {
        padding-right: 20px;
        margin-bottom: 0;
    }
}

@media (width >= 1024px) {
    .member-logo {
        margin-right: 47px;
    }

    .member-info {
        padding-right: 40px;
    }

    .member-logo img {
        width: 75px;
        height: auto;
    }
}