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: 10px;
    color: #4285f4;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
}

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

.scan-input {
    margin-bottom: 20px;
    background: #fff;
}

.domain-input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
}

.section-actions .action-btn {
    padding: 3px 8px;
    margin-left: 5px;
    font-size: 12px;
}

.scan-btn {
    padding: 10px 20px;
    background: #007bff;
    border: none;
    color: #fff;
    cursor: pointer;
}

.scan-btn:hover {
    background: #0056b3;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
}

.results {
    flex: 3;
    background: #fff;
}

.results h2 {
    margin-bottom: 10px;
    color: #000;
}

.scan-details p {
    margin: 5px 0;
    color: #000;
}

.actions {
    margin: 10px 0;
    background: #fff;
}

.action-btn {
    padding: 5px 10px;
    margin-right: 10px;
    background: #fff;
    border: 2px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

.action-btn:hover {
    background: #e6f0fa;
    color: #0056b3;
}

.scrollable-table {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.scrollable-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.scrollable-table th, .scrollable-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    white-space: nowrap;
}

.scrollable-table thead {
    position: sticky;
    top: 0;
    background: #f9f9f9;
    z-index: 1;
}

.scrollable-table thead th {
    position: sticky;
    top: 0;
    background: #f7f7f7;
    z-index: 2;
}

.scrollable-table th {
    background: #f0f0f0;
}

.show-more-btn {
    padding: 5px 10px;
    background: #007bff;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}

.show-more-btn:hover {
    background: #0056b3;
}

.unresolved-ips-section {
    margin-top: 20px;
}

.recent-scans {
    flex: 1;
    margin-left: 20px;
    background: #fff;
}

.recent-scans h3 {
    margin-bottom: 10px;
    color: #000;
}

.recent-scans ul {
    list-style: none;
    padding: 0;
    color: #000;
}

.recent-scans ul li {
    padding: 5px 0;
    color: #666;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.section-actions {
    display: flex;
    gap: 6px;
}

.search-container {
    margin-top: 30px;
    text-align: center;
}

.search-input {
    padding: 15px 30px;
    width: 400px;
    font-size: 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 5px #4285f4;
}

.search-btn-glass {
    margin-top: 15px;
    padding: 10px 30px;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    background: #eaf1fb;
    color: #4c7dfc;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
    transition: background 0.3s ease, transform 0.1s ease;
}

.search-btn-glass:hover {
    background: #dce8fd;
    transform: scale(1.03);
}

.dual-upload-search {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.left-search, .right-upload {
    flex: 1;
}

#uploadForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

#uploadForm input[type="file"] {
    padding: 6px;
}

.loading-spinner {
    text-align: center;
    margin: 20px 0;
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4285f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
