.hidden-content {
    display: none;
    margin-top: 2rem;
}

#defy-message {
    margin-top: 1rem;
    min-height: 20px;
}

#defy-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.defy-verifier-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.upload-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #3B40FB;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    font-weight: bold;
}

.upload-button:hover {
    background: #2A2FC7;
    transform: translateY(-2px);
}

.image-preview {
    margin: 2rem 0;
    min-height: 200px;
    border: 3px dashed #D6FF01;
    background: rgba(255,255,255,0.1);
}

.image-preview img {
    max-width: 100%;
    height: auto;
    padding: 1rem;
	margin:0 auto;
}

.verification-result {
    padding: 1rem;
    font-size: 1.2rem;
    font-family: 'Space Mono', monospace;
	    
}

.verification-result.valid {
    color: #4CAF50;
	background-color: #fff;
}

.verification-result.invalid {
    color: #f44336;
	background-color: #fff;
}

.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}