/* Secret Link UI */
form.secretLinkUI {
    width: 60%;
    padding-top: 100px;
    position: relative;
    /* display: flex; */
    display: none;
    flex-direction: column;
    padding-top: 10%;
}

form.secretLinkUI h3 {
    color: #000;
    font-family: "Roboto";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 30px;
}

.secret-link-header {
    color: #000;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
}

.secret-link-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 32px;
    padding: 5px 8px;
    font-family: "Roboto";
    font-size: 14px;
    border: 1px solid #C7C9CB;
    outline: none;
    background-color: #fff;
    cursor: text;
    word-wrap: break-word;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.generatedSecretLink {
    width: 95%;
    color: #000;
    font-family: "Roboto";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.copyButton {
    cursor: pointer;
    position: relative;
}

.tooltip {
    background-color: #4a5568; 
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap; 
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 6px;
    z-index: 10;
    display: none;
}

.copyButton:hover .tooltip {
    display: block;
}

.secret-header {
    color: #000;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
}

.secret-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 32px;
    max-height: 200px;
    padding: 5px 8px;
    font-family: "Roboto";
    font-size: 14px;
    border: 1px solid #C7C9CB;
    outline: none;
    background-color: #fff;
    cursor: text;
    word-wrap: break-word;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    overflow: auto;
}

.originalSecretDisplay {
    color: #000;
    font-family: "Roboto";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.create-new-secret {
    display: flex;
    justify-content: flex-end;
}

.create-new-secret-btn {
    height: auto;
    width: auto;
    padding: 8px 16px;
    background-color: #1869B7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--LightTheme-Surface-Overlay, #FFF);
    font-family: "Roboto";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    border: none;
    outline: none;
}

.create-new-secret-btn:hover {
    background-color: #145A9E;
    transform: scale(1.05);
}

.create-new-secret-btn:active {
    background-color: #0E4A7F;
    transform: scale(0.98);
}

@media (max-width: 425px) {
    .generatedSecretLink {
        width: 80%;
        color: #000;
        font-family: "Roboto";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }
}