/* Start Tool CSS */
.tool-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.tool-content {
    padding: 0 15px;
}

#recordsOutput {
    font-family: monospace;
    white-space: pre-wrap;
    max-height: 400px;
    overflow-y: auto;
}

.record-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.record-type {
    font-weight: bold;
    color: #4361ee;
}

.record-value {
    color: #333;
}

.record-ttl {
    color: #666;
    font-size: 0.9em;
}

#debugOutput {
    max-height: 200px;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .input-group {
        flex-direction: column;
    }
    
    #recordType {
        max-width: 100%;
        margin-top: 10px;
    }
    
    #lookupBtn {
        width: 100%;
        margin-top: 10px;
    }
}
/* End Tool CSS */