.logo-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -50px;
}
.logo-container img {
    max-width: 300px;
    height: auto;
}
#generatedPassword {
    display: flex;
    align-items: center;
}
#generatedSalt {
    display: flex;
    align-items: center;
    height: 38px;
}
#generatedHash, #generatedSalt, #decryptionResult {
    display: flex;
    align-items: center;
}

#map {
    height: 300px;
    width: 100%;
}
.suggestions {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.suggestions li {
    padding: 5px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}
.suggestions li:hover {
    background-color: #e9ecef;
}


.captcha-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #f3ec78, #af4261);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    user-select: none;
}


.honeypot-visible {
    border: 1px dashed #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}


