* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


  #shortened-url-example {
    user-select: none; /* Esto impide la selección de texto */
    -webkit-user-select: none; /* Versión para navegadores basados en WebKit (como Safari y Chrome) */
    -moz-user-select: none; /* Versión para Firefox */
    -ms-user-select: none; /* Versión para Internet Explorer/Edge */
  }
  
  
#url-input, #shortenedUrlField {
    background: var(--body-bg-color);
    border-radius: 0.25rem;
    color: var(--body-text-color);
    border: 1px solid var(--tpl-base-200);
    padding: 0.4375rem 0.75rem;
    height: 40px;
    max-width: inherit;
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 73px;
}


  #paste-button {
    position: absolute;
    left: 17px;
    height: 46px;
    width: 60px;
    border-radius: 2px 0 0 2px;
    border: none;
    background-color: #e6eef9;
    cursor: pointer;
    text-align: center;
    padding: 0;
    line-height: 46px;
    margin-top: 2px; 
    margin-bottom: 2px; 
    margin-left: 1px; 
    color: #185ee0;
    font-weight: 500;
}

#paste-button:hover {
    background-color: #e0e0e0; 
}

 #copy-button {
    position: absolute;
    left: 17px;
    height: 46px;
    width: 60px;
    border-radius: 2px 0 0 2px;
    border: none;
    background-color: #e6eef9;
    cursor: pointer;
    text-align: center;
    padding: 0;
    line-height: 46px;
    margin-top: 2px; 
    margin-bottom: 2px; 
    margin-left: 1px; 
    color: #185ee0;
    font-weight: 500;
}

#copy-button:hover {
    background-color: #e0e0e0; 
}

.grecaptcha-badge { 
    visibility: hidden; 
}

