.edit-btn:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.edit-btn:active {
    transform: scale(1.1);
}

.hidden {
    display: none !important;
}

#popup-center {
    background-color: rgb(97, 85, 85, 0.5);
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

#popup-center .editor-container {
    width: clamp(450px, 50%, 800px);
    text-align: center;
    color: white;
}

#popup-center form {
    box-shadow: 0px 0px 100px 5px gray;
}

.cancel-btn {
    background-color: #750f35;
    box-shadow: 0px 0px 10px 1px gray;
}

.submit-btn {
    background-color: green;
    box-shadow: 0px 0px 10px 1px gray;
}

.btn:hover {
    cursor: pointer;
    transform: scale(1.03);
}

.btn:active {
    transform: scale(1);
}
