#meow-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#meow-verification-popup {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.meow-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

.meow-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.meow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.meow-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #0073aa;
    color: #fff;
    transition: background 0.3s;
}

.meow-buttons button:hover {
    background: #005177;
}

#meow-go-home {
    background: #666;
}

#meow-show-temp, #meow-back-auth {
    background: #222;
}

#meow-message {
    margin-top: 15px;
    font-size: 14px;
    color: #d63638;
}

.meow-success {
    color: #46b450 !important;
}
