/*ParameterInputDoc.razor.css*/
.parameter-input-doc {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    height: 2rem;
    position: relative;
}

.parameter-input-doc-loading {
    background-color: #80808087;
    z-index: 10;
    cursor: progress;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.parameter-input-doc-name-container {
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #ededed;
    border: 0.063rem solid #ededed;
    border-radius: .625rem;
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 60%;
}

.parameter-input-do-button {
    color: #fff;
    background-color: #ededed;
    border: 0.063rem solid #ced4da;
    user-select: none;
    border: .063px solid transparent;
    border-radius: .25rem;
    white-space: nowrap;
}

.parameter-input-doc-file-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*Parameter.razor.css*/
/* Icones */
.add-on {
    cursor: pointer;
    font-size: large;
    color: white;
}

.edit-on {
    cursor: pointer;
}

.trash-on {
    cursor: pointer;
    color: #f9777f;
}

.trash-off {
    cursor: not-allowed;
}

.parameter-empty-rows {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*ParameterHierarchy.razor.css*/
.parameter-hierarchy-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/*ParameterColumnRenderer.razor.css*/

.column-render-color {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    border: 1px dashed;
}

.column-render-downloadDoc {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    align-items: center;
    width: 100%;
}

.column-render-text-render {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.column-render-container {
    display: flex;
    justify-content: center;
}

/*ParameterEditModal.razor.css*/

.edit-modal-input-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.edit-modal-input-container {
    display: flex;
    flex-direction: row
}

.edit-modal-input-container-name {
    width: 33%;
    display: flex;
    align-items: center;
}

.edit-modal-input-container-input {
    width: 66%;
}

/*ParameterErrorModal.razor.css*/

.error-modal-detail-container {
    width: 100%;

}

.error-modal-detail-message {
    width: 100%;
    overflow: auto;
    padding:0.5rem;
}


