/* Popup container */
.prompt {
    display: none;
    position: fixed;
    z-index: 8;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Popup content */
.prompt-content {
    background-color: #fefefe;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    height: 50%;
}

.prompt-content h2{
    text-align: center;
}
.prompt-content textarea{
    margin: auto;
    display: flex;
}

.prompt-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: auto;
}

/* Form styling */
.prompt-content label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.prompt-content input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
