/*
+--------------------------------------------------+
|         This was created by Tyler Chaky          |
|                                                  |
|  __          __   _____   __      __   __   __   |
|  \ \        / /  /  _  \  \ \    / /  /_ | /_ |  |
|   \ \  /\  / /  /  /_\  \  \ \  / /    | |  | |  |
|    \ \/  \/ /  /  _____  \  \ \/ /     | |  | |  |
|     \__/\__/  /__/     \__\  \__/      |_|  |_|  |
|                                                  |
+--------------------------------------------------+
*/

.dns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.dns-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dns-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--accent-color);
}

.dns-value {
    font-family: 'Consolas', monospace;
    color: #fff;
    font-size: 0.9rem;
    max-width: 60%;
    text-align: right;
    word-break: break-all;
}

.match { color: #00ff9d; }
.mismatch { color: #ffcc00; } 
.error { color: #ff3333; } 