/* Custom stable button styles for Smartsheet User Lookup 
 * These styles emulate the x-anchor button styling but won't be affected by theme updates
 */

.smartsheet-button {
    overflow: hidden;
    display: inline-flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    position: relative;
    min-width: 1px;
    text-decoration: none;
    cursor: pointer;
    border-width: 0;
    border-radius: 0.35em;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);
    color: rgb(136, 166, 195);
    margin: 10px 0;
}

.smartsheet-button:hover {
    color: rgb(42, 44, 55);
}

.smartsheet-button .button-content {
    overflow: hidden;
    display: flex;
    flex: 1 0 auto;
    position: relative;
    height: 100%;
    border-radius: inherit;
    transform: translate(0);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.575em 0.85em;
}

.smartsheet-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Add specific styling for different button types if needed */
.smartsheet-button.search-button {
    min-width: 100px;
}

.smartsheet-button.verify-button {
    min-width: 120px;
}

.smartsheet-button.continue-button {
    min-width: 120px;
}