/* Nitrono Verifier Plugin Styles v2.1 */

.nv-container {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-family: sans-serif;
}
.nv-lang-switcher { 
    text-align: right; 
    margin-bottom: 1.5em; /* Increased margin */
    display: block;
    width: 100%;
}
.nv-lang-switcher select { border-color: #E5E7EB; padding: 5px; }

/* NEW: Ensure form starts on a new line */
#nv-verify-form {
    clear: both;
    display: block;
}

#nv-verify-form p {
    margin: 0 0 1em 0; /* Ensure spacing between form elements */
    padding: 0;
}

#nv-verify-form input, #nv-verify-form select, #nv-verify-form button {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 16px;
    color: #1F2937;
    box-sizing: border-box;
}
#nv-verify-form button {
    background-color: #1A73E8;
    color: #FFFFFF;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1em; /* Add some space before the button */
}
#nv-verify-form button:hover { background-color: #10B981; }

.nv-result {
    margin-top: 1.5em;
    padding: 1em;
    border-radius: 6px;
    display: none; 
}
.nv-result.success {
    background-color: #F0FDF4;
    border: 1px solid #10B981;
    color: #1F2937;
}
.nv-result.error {
    background-color: #FEF2F2;
    border: 1px solid #EF4444;
    color: #EF4444;
}
.nv-result img.logo { max-width: 100px; margin-bottom: 1em; }

.nv-result .share-button {
    display: inline-block;
    margin-top: 1em;
    padding: 10px 20px;
    background-color: #10B981;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.nv-footer-credit { 
    margin-top: 1.5em;
    text-align: center;
    font-size: 12px;
    color: #9CA3AF;
}

/* Modal Styles */
.nv-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9);
}
.nv-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}
.nv-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.nv-modal-close:hover,
.nv-modal-close:focus {
    color: #bbb;
    text-decoration: none;
}