/* Title */
h1 {
    font-family: monospace;
    color: #2c5282;
    text-align: center;
    font-size: 24px;
    margin: 30px auto;
    max-width: 800px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Main containers */
.fingerprint-container {
    font-family: monospace;
    max-width: 800px;
    margin: 20px auto;
    background-color: #f5f5f5;
    border-radius: 4px;
    width: 95%;
}

/* Score and Hash display */
.fingerprint-score,
.fingerprint-hash {
    text-align: center;
    font-size: 16px;
    padding: 10px;
}

/* Table styles */
.fingerprint-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 14px;
}

/* Table container with horizontal scroll */
.fingerprint-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

/* Group separator */
.group-separator {
    padding: 10px 0;
}

/* Object header */
.object-header {
    color: #2c5282;
    font-size: 1.1em;
    font-weight: 500;
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Data cells */
.data-cell {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    background-color: #ffffff;
    word-break: break-all;
    max-width: 300px;
}

.property-name {
    color: #4a5568;
    width: 30%;
}

.property-value {
    color: #2d3748;
    width: 70%;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .fingerprint-container {
        margin: 10px auto;
        width: 98%;
    }

    h1 {
        font-size: 20px;
        margin: 15px auto;
        padding: 10px;
    }

    .fingerprint-score,
    .fingerprint-hash {
        font-size: 14px;
    }

    .fingerprint-table {
        font-size: 13px;
        min-width: 400px;
    }

    .data-cell {
        padding: 6px;
        max-width: 200px;
    }

    .object-header {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    .fingerprint-container {
        width: 100%;
    }

    h1 {
        font-size: 18px;
        margin: 10px auto;
    }

    .fingerprint-score,
    .fingerprint-hash {
        font-size: 12px;
    }

    .fingerprint-table {
        font-size: 12px;
        min-width: 300px;
    }

    .data-cell {
        padding: 4px;
        max-width: 150px;
    }
}

/* Add to your existing CSS */
.server-side-header {
    background-color: #ebf8ff;  /* Light blue background */
    border-bottom: 2px solid #2c5282;
}

.server-side-section {
    background-color: #f7fafc;  /* Slightly different background */
}

.main-header {
    background-color: #2c3e50;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: monospace;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    margin: 0;
    padding: 0;
}

.logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.logo a:hover {
    color: #3498db;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#fingerprint-info-container {
    margin-top: 2rem;
}

.fingerprint-table {
    width: 100%;
    border-collapse: collapse;
    font-family: monospace;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.fingerprint-table tr {
    border-bottom: 1px solid #dee2e6;
}

.fingerprint-table tr:last-child {
    border-bottom: none;
}

.fingerprint-table td {
    padding: 1rem;
}

.key-cell {
    font-weight: bold;
    width: 30%;
    background-color: #e9ecef;
}

.value-cell {
    width: 70%;
}

/* IP Address styles to match fingerprint table */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.section {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    padding: 20px;
}

.section-title {
    color: #1a73e8;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.info-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.info-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-value {
    color: #333;
    font-size: 15px;
    font-weight: 500;
} 

#canvas {
    display: block;
    margin: 30px auto;
    max-width: 100%;  
}
