
.results {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dns-container {
    width:100%;
    max-width:1400px;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    align-items: flex-start;
    border: 1px solid #dbdbdb;
}

.dns-results {
    margin-top: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;;
}

.dns-results h3 {
    margin: 0 10px;
}

.dns-title {
    font-size: 26px;
    font-weight: bold;
    margin-top: 20px;
    color: #000000;
}

.dns-item {
    border-radius: 6px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.dns-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
li.dns-line h5 {
    font-size: 12px;
    margin: 5px;
    padding: 2px 10px;
    background: #11a917;
    border-radius: 5px;
    color: white;
    font-weight:400;
}
li.dns-line h6 {
    font-size: 12px;
    margin: 5px;
    padding: 2px 10px;
    background: #2c76d5;
    border-radius: 5px;
    color: white;
    font-weight:400;
}
.dns-item a {
    background: #ebebeb;
    color: #4f4e4e;
    padding: 5px 10px;
    border-radius: 5px;
}
.dns-item a:hover {
    color: black;
}

.dns-details li {
    list-style: none;
    font-size: 15px;
    color: #000;
    display:flex;
    align-items:center;
}

.dns-details h3 {
    font-weight: 500;
    margin: 5px 10px;
    background: black;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}

/* WHOIS Section */
.whois-results {
    width: 100%;
    padding: 20px;
    background: #232526; 
    background: -webkit-linear-gradient(to left, #414345, #232526); 
    background: linear-gradient(to left, #414345, #232526);
    border-radius: 8px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.whois-results h2 {
    font-size: 20px;
    color: #4caf50;
    margin-bottom: 15px;
}

.whois-results pre {
    font-size: 14px;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    white-space: pre-wrap;
    word-wrap: break-word;;
}
.txt-records p {
    margin: 10px 50px;
    padding: 10px;
    overflow-wrap: break-word;
}
.txt-records p:nth-child(2n+1) {
    background: #e7e7e7;
    border-radius: 8px;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .full-results {
        flex-direction: column;
        gap: 20px;
    }

    .dns-container, .whois-results {
        min-width: 100%;
        flex-wrap:wrap;
    }
    .dns-results {
        max-width:100%;
        
}

    .input-form input {
        width: 80%;
    }
}
