.statusSelectInput {
    width: 236px;
}
.statusSelectorsContainer{
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-bottom: 16px;
}

.statusBar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #E5E5E5;
    padding: 16px;
}

.fullNameRenewalButtonContainer {
    display: flex;
    justify-content: space-between;

    .statusBarFullName {
        font-size: 20px;
        font-weight: 500;
        line-height: 23.44px;
        color: #000000;
    }

    .statusBarButtonContainer {
        display: flex;
        align-items: flex-end;
        gap: 16px;
    }

    .renewalButton {
        background-color: #FFF7E6;
        color: #FFA500;
        font-weight: bold;
        text-transform: uppercase;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .renewalButton:hover {
        background-color: #FFF7E6;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .renewalButton:focus:not(:active) {
        background-color: #FFF7E6;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .renewalButton:not(:hover):not(:active) {
        background-color: #FFF7E6;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .statusBarShowButton {
        background-color: #E1F5FE;
        color: #4BB9F7;
        font-weight: bold;
        text-transform: uppercase;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .statusBarShowButton:hover {
        background-color: #E1F5FE;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .statusBarShowButton:focus:not(:active) {
        background-color: #E1F5FE;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .statusBarShowButton:not(:hover):not(:active) {
        background-color: #E1F5FE;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}



.statusSelector {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.statusSelectorLabel {
    font-size: 16px;
    font-weight: 500;
    line-height: 18.75px;
    color: #000000;
}

.statusBarWrapper {
    display: flex;
    flex-direction: Column;
    gap: 24px;
}