body {
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #4285f4;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
}

.logo {
    width: 30px;
    height: auto;
    margin-left: 10px;
}

.subdomain-details, .ip-details {
    background: #fff;
}

.subdomain-details h2, .ip-details h2 {
    margin-bottom: 10px;
    color: #000;
    font-size: 24px;
}

.scan-details {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Label and value columns */
    gap: 10px; /* Space between rows */
}

.detail-item {
    display: contents; /* Allows child spans to participate in grid */
}

.label {
    font-weight: bold;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

.value {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

.hostnames-section, .ip-section {
    margin-top: 20px;
}

.hostnames-section h3, .ip-section h3 {
    margin-bottom: 10px;
    color: #000;
    font-size: 20px;
}

.hostnames-section p, .ip-section p {
    margin: 5px 0;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}