.btn-copy {
    padding: 5px;
    margin: 0;
}

.widable {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

td {
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
    margin: 0;
}

.customer-active-section {
    text-align: left;
}

fieldset {
    margin: 10px;
    padding: 15px;
    border-radius: 7px;
    justify-content: center;
}

legend {
    font-size: 13px;
    color: grey;
}

.act_eco_group {
    height: auto;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.remove_button {
    background: transparent;
    border: none;
    text-align: left;
}

ul {
    padding: 0px;
    list-style-type: none;
}

li {
    margin: 5px;
}

.alert-message {
    color: red;
    margin: 5px;
}

.enlaces {
    display: flex;
    justify-content: space-around;
    z-index: 99;
}

.enlaces li {
    list-style: none;
    margin: 10px;
}

.enlaces li a {
    text-decoration: none;
    font-size: 1em;
    position: relative;
}

.enlaces li a:hover {
    color: #c84e5f;
    font-weight: bold;
}

#act_eco_list>li {
    width: 100%;
    margin-top: 10px;
}

.enlaces li a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c84e5f;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform ease 0.5s;
    -webkit-transition: transform ease 0.5s;
    -moz-transition: transform ease 0.5s;
    -ms-transition: transform ease 0.5s;
    -o-transition: transform ease 0.5s;
}

.enlaces li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.form-group {
    margin-top: 10px;
}

#emailErrorBtn {
    border-radius: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}