.applicationButtonContainer {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid #ccc;
    padding: 0.5rem;
    margin: 0.5rem;
    background-color: whitesmoke;
}

.applicationButton {
    position: relative;
    z-index: 20;
    padding: 0.25rem 0.5rem;
    font-size: inherit;
    background-color: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.applicationButton:disabled {
    background-color: #b0b0b0;
    cursor: not-allowed;
}

.applicationButton:hover:enabled {
    background-color: #1565c0;
}