
.sub form input, form select, form button {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, .15);
    outline: none;
}
.sub .input-form button {
    padding: 14px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #11a917;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 125px;
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
}
.sub .input-form button:hover {
    background:#000;
}
.top-search-area.sub {
	width:100%;
	min-width:600px;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
    border-bottom: 1px solid #dbdbdb;
    padding: 10px;
    background: #f5f5f5;
	border-radius: 10px 10px 0 0;
}
.sub h1 {
    font-size: 20px;
    color: #333;
    text-align: left;
    margin-left: 13px;
    text-transform: uppercase;
}
.dig-dns-search {
    display:flex;
	justify-content:flex-end;
	flex-direction:column;
	gap:5px;
}
#advancedButton {
    padding: 12px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 125px;
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
}
#advancedButton:hover {
    background:#000;
}

.server-results {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    background-color: #fff;
    box-sizing: border-box;
    align-items: flex-start;
    flex-wrap: wrap;
	flex-direction:column;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
}

.server-card {
    background: #ffffff;
    width: 100%;
	max-width:600px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
	display: flex;
    align-items: stretch;
    justify-content: center;
	position:relative;
}

.server-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.server-header {
    display: flex;
    align-items: center;
	width:50%;
    padding: 15px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #dbdbdb;
}

.server-header img {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
}

.server-header h3 {
    margin: 0;
    font-size: 14px;
}

.server-header p {
    margin: 0;
    font-size: 10px;
    color: #666;
}
.server-body {
    width: 100%;
	max-width:400px;
    border-bottom: 1px solid #dbdbdb;
    display: block;
}
.status-icon {
    font-size: 20px;
    font-weight: bold;
    color: #bbb; /* Default color for querying */
}

.status-icon.success {
    color: #28a745;
}

.status-icon.failure {
    color: #dc3545;
}

.status-icon.querying {
    color: #ffc107; /* Yellow color for querying state */
}

.server-content {
    padding: 0 10px;
    font-size: 12px;
    gap: 10px;
    text-align: right;
    color: #444;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content:space-between;
	word-break: break-word;
	line-height:1.5;
	margin-top: 7px;
}
.server-content p {
    color: #333;
	text-align:left;
}
.server-content span {
    background: #0e89df;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
}
/* Styling for the querying state */
.server-card.querying .status-icon {
    content: "━"; /* Line symbol */
}
.spinner {
    
    border: 5px solid #dbdbdb;
    border-top: 5px solid #11a917;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin: auto;
    position: absolute;
    right: 55px;
	top:12px;
    background: #fff;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.dns-checker-guide-container {
    padding: 0 30px;
    border-radius: 8px;
    max-width: 600px;
    background: #f5f5f5;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
    border: 1px solid #dbdbdb;
}

.dns-checker-guide-title, .ssl-guide-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dns-checker-overview,
.dns-checker-what-it-does,
.dns-checker-why-use-it,
.dns-checker-benefits,
.dns-checker-usage-example,
.dns-checker-more-info {
    margin-bottom: 30px;
}

.dns-checker-subheading, .ssl-subheading {
    font-size: 18px;
    color: #007BFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.dns-checker-overview-text,
.dns-checker-reason,
.dns-checker-example-text,
.dns-checker-more-info-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.dns-checker-functions-list,
.dns-checker-benefit-list {
    list-style-type: disc;
    margin-left: 30px;
}

.dns-checker-function,
.dns-checker-benefit {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.dns-checker-function strong,
.dns-checker-benefit strong {
    color: #333;
}

.dns-checker-functions-list li,
.dns-checker-benefit-list li {
    margin-bottom: 10px;
}

.dns-checker-guide-container a {
    color: #11a917;
    text-decoration: none;
}

.dns-checker-guide-container a:hover {
    color: #0d8c12;
}

.dns-checker-guide-container p {
    font-size: 14px;
    color: #333;
	text-align:justify;
}

.dns-checker-guide-container .dns-checker-example-text {
    font-size: 1rem;
    color: #333;
    font-weight: normal;
}

.dns-checker-more-info-text {
    font-size: 14px;
    color: #333;
}

.dns-checker-what-it-does,
.dns-checker-benefits, .ssl-what-it-does {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.dns-checker-functions-list,
.dns-checker-benefit-list {
    padding-left: 20px;
}

.dns-checker-what-it-does ul,
.dns-checker-benefits ul {
    padding-left: 20px;
    font-size: 1rem;
}

.dns-checker-functions-list li,
.dns-checker-benefit-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.dns-checker-guide-title,
.dns-checker-subheading {
    font-family: 'Arial', sans-serif;
}

.dns-checker-guide-container p {
    line-height: 1.5;
}

.dns-checker-usage-example {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.dns-checker-usage-example h3 {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.dns-checker-usage-example p {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.dns-checker-guide-container .dns-checker-more-info-text {
    font-size: 14px;
    color: #333;
}

.dns-checker-overview p,
.dns-checker-what-it-does ul,
.dns-checker-benefits ul,
.dns-checker-usage-example p,
.dns-checker-more-info p {
    margin-bottom: 20px;
}

.dns-checker-guide-container .dns-checker-example-text {
    font-size: 14px;
    color: #333;
}

.section-lifecycle {
    padding:20px;
	border-bottom: 1px solid #dbdbdb;
}
.domain-lifecycle-container {
    padding: 0 30px;
    background-color: #fff;
}
.domain-lifecycle-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.icann-stages, .nominet-stages {
    background-color: #f5f5f5;
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.whois-icann, .whois-nominet {
    background-color: #c4eaff;
    margin: 20px 0;
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#domain-lifecycle-content h2 {
    font-size: 18px;
    color: #007BFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
#domain-lifecycle-content p {
    font-size: 14px;
    color: #333;
    text-align: justify;
    line-height: 1.5;
}
#domain-lifecycle-content li {
	font-size: 16px;
    color: #333;
    text-align: justify;
    line-height: 1.5;
}

#results p {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
}

#results { 
	overflow-y: auto; 
	max-height: 700px; 
}
.calendar { 
	margin-bottom: 20px; 
	text-align: center;
	display:flex;
	justify-content:center;
}
p.queried-tld {
    margin: 5px;
    background: #000000 !important;
    color: white;
    font-weight: 400;
}
.queried-tld-date {
    margin: 5px;
    background: #007bff !important;
    color: #fff;
    font-weight: 400;
}
.ui-widget.ui-widget-content {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
	border: 1px solid transparent !important;
}
.ui-datepicker .ui-datepicker-header {
    background: #8392A7;
    color: #fff;
}

.dns-checker-guide-container a:hover {
    color: #007bff !important;
	background: #fff !important;
}
.calendar-wrap {
    background: #f5f5f5;
	position:sticky;
	top:50px;
}
.second-cycle {
	width:600px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
}
#results span {
    margin: 5px;
    background: #11a917 !important;
    color: #fff;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 8px;
    line-height: 1.5;
}

.advertising-container {
    display: none; /* Hide all containers initially */
    width: 100%; /* Full width of the wrapper */
}

.advertising-container.active {
    display: block; /* Show the active container */
}