body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
    background-image: url('hacking-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-sizing: border-box;
    color: #333;
}

h1 {
    color: #1c1e21;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    color: #606770;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

#facebook-login-section .main-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

#facebook-login-button {
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

#facebook-login-button:hover {
    background-color: #166fe5;
}

.button-fb-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

#dni-consulta-section {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #4b4f56;
}

.form-group input[type="text"],
.form-group textarea {
    width: calc(100% - 22px); 
    padding: 12px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit; 
}

.form-group textarea {
    resize: vertical; 
    min-height: 80px;
}


.submit-button, .secondary-button {
    background-color: #42b72a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px; 
}

#submit-situation-button { 
    margin-top: 0; 
}


.submit-button:hover {
    background-color: #3aa822;
}

.secondary-button {
    background-color: #6c757d;
    margin-top: 15px;
}

.secondary-button:hover {
    background-color: #5a6268;
}

#results-container {
    margin-top: 30px;
    text-align: left;
    margin-bottom: 20px; 
}

.result-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-card .avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.result-card h2 {
    font-size: 20px;
    color: #1c1e21;
    margin-bottom: 10px;
    text-align: center;
}

.result-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.result-card p strong {
    color: #1c1e21;
}

.error-message {
    color: #721c24;
    font-weight: bold;
    text-align: center;
    padding: 10px 15px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 10px 0;
    line-height: 1.5;
}

#explain-situation-section {
    margin-top: 20px;
    border-top: 1px solid #dddfe2;
    padding-top: 20px;
}

#situation-confirmation-message {
    color: #0f5132; 
    font-weight: bold;
    text-align: center;
    padding: 10px 15px;
    background-color: #d1e7dd; 
    border: 1px solid #badbcc; 
    border-radius: 4px;
    margin-top: 20px; 
    line-height: 1.5;
}