body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom right, #728672, #FFFFCC); /* Green to cream gradient */
    position: relative;
}

.container {
    text-align: center;
}

#text-container {
    font-size: 14px;
}

#x-link {
    color: red;
    text-decoration: line-through;
    cursor: pointer;
}

#sharex-link {
    color: rgb(150, 255, 150);
    cursor: pointer;
}

.lock-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

#lock-icon {
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 10;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 11;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.hidden {
    display: none;
}
