* {
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background: #020617;
    color: #e5e7eb;
    margin: 0;
    padding: 40px;
}

.container {
    max-width: 900px;
    margin: auto;
}

h1 {
    text-align: center;
    margin-bottom: 5px;
}

.green {
    color: #0dff2a;
}

.red {
    color: #ff8585;
}
.name {
    color: #60a5fa;
}

.display {
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 30px;
}

.input-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #0f172a;
    color: white;
}

button {
    padding: 12px 20px;
    background: #2563eb;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #D91717;
}

.results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    background: #0f172a;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 0 0 1px #1e293b;
}

.general {
    padding-bottom: 25px;
}

.card h3 {
    margin-top: 0;
    color: #60a5fa;
}

.wide {
    grid-column: 1 / -1;
}

ul {
    padding-left: 18px;
}

li {
    color: #cbd5f5;
}

#author {
    color: #FFD7D6 ;
    text-align: center;
    background-color: #8F0000 ;
    margin-top: 25px;
    padding: 4px;
    border-radius: 5px;
}

.status {
    font-weight: 600;
}

.status.ok {
    color: #22c55e;
}

.status.error {
    color: #ef4444;
}

.coords {
    display: flex;
    align-items: center;
    gap: 6px;
}