@import url("/assets/style/base.css");

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-container {
    background-color: var(--ctp-mocha-overlay0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    max-width: 90%;
    font-family: Arial, sans-serif;
}

.popup-input-container {
    width: 100%;
}

.popup-input {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--ctp-mocha-overlay2);
    box-sizing: border-box;
    outline: none;
    margin-bottom: 10px;
    background-color: var(--ctp-mocha-overlay2);
    resize: vertical;
    overflow: auto;
}

.popup-input:focus {
    outline: 2px solid var(--ctp-mocha-surface1);
}

.popup-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

.popup-header {
    margin-top: 0px;
    color: var(--ctp-mocha-text);
}

.submit-button {
    background-color: var(--ctp-mocha-green);
    color: var(--ctp-mocha-base);
    margin-bottom: 10px;
}

.cancel-button {
    background-color: var(--ctp-mocha-red);
    color: var(--ctp-mocha-base);
}

.eye {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    /* Adds space between input and button */
}

.eye:hover {
    color: #0056b3;
}