/* Pulsing Dots Style */
.dac-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.dac-dot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dac-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #1a22e4; /* Your requested color */
    animation: pulse 1.5s infinite ease-in-out;
}

/* Add a delay to each dot for a staggered effect */
.dac-dot:nth-child(1) {
    animation-delay: 0s;
}
.dac-dot:nth-child(2) {
    animation-delay: 0.3s;
}
.dac-dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Pulsing Animation */
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0.5;
    }
}

.domain-checker-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.dac-form {
    margin-bottom: 30px;
}
.dac-input-group {
    display: flex;
    margin-bottom: 15px;
    direction: ltr;
}
#dac-domain {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}
.dac-submit-btn {
    background-color: #1a22e4;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 132px;
    font-family: 'shabnam';
}
.dac-submit-btn:hover {
    background-color: #1b212b;
}
.dac-result {
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}
.dac-loading {
    color: #666;
    font-style: italic;
}
.dac-error  {
    font-weight: 500;
    background: #fa35381c;
    padding: 20px;
    border-radius: 5px;
    color: #222;
}
.dac-multi-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dac-result-item {
    padding: 15px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 10px rgb(72 50 212 / 15%);
    border: 1px solid #FFF;
}
.dac-checking-message {
    margin-bottom: 8px;
    color: #666;
}
.dac-domain-result {
    margin-bottom: 10px;
}
.dac-registrar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.dac-buy-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-button-secondary);
    color: #666 !important;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'shabnam';
    font-size: 12px;
}
/* Styling for suggestions */
.dac-suggestions {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}
.dac-suggestions-container {
    margin-bottom: 20px;
}
.dac-suggestions-container strong {
    font-family: shabnam;
}
.dac-suggestion {
    cursor: pointer;
    margin-right: 10px;
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 15px;
    color: #FFF;
    background: var(--color-secondary);
    transition: all 0.3s ease;
}

.dac-suggestion:hover {
    background: var(--color-button-secondary);
    color: #222;
}

.dac-loading {
    color: #1a22e4;
    font-size: 14px;
    margin-top: 10px;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    .dac-input-group {
        flex-direction: column;
    }
    
    #dac-domain {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .dac-submit-btn {
        border-radius: 4px;
    }
}