/* NGINX Static Server — Test Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 700px;
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card h2 {
    font-size: 1.2rem;
    color: #38bdf8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #334155;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #1e293b;
}

table td:first-child {
    font-weight: 600;
    color: #94a3b8;
    width: 40%;
}

table td:last-child {
    color: #e2e8f0;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 0.4rem 0;
    color: #cbd5e1;
}

code {
    background-color: #0f172a;
    color: #38bdf8;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

button {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.5rem;
}

button:hover {
    background-color: #1d4ed8;
}

button:active {
    background-color: #1e40af;
}

.status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.status.success {
    color: #4ade80;
}
