#captcha-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#captcha-popup-content {
    width: 320px; /* Stejná šířka jako WordPress box */
    height: auto;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#captcha-popup-content img {
    margin-bottom: 15px;
}

#captcha-popup-logo {
    width: 120px; /* Přizpůsob velikosti loga */
    margin: 0 auto 10px;
}

#captcha-popup-content p {
    font-size: 14px;
    color: #555;
    margin: 10px 0 20px;
	margin-bottom: 15px!important;
}

#captcha-popup-content input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#captcha-popup-content button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background-color: #239a93;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#captcha-popup-content button:hover {
    background-color: #333;
}

