.domeneshop-transfer {
    width: 100%;
}

.domeneshop-transfer-search {
    display: flex;
    width: 100%;
    max-width: 560px;
    box-sizing: border-box;
}

.domeneshop-transfer-search input[type="text"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 6px 0 0 6px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    border-right: none;
    box-sizing: border-box;
}

.dst-search-button {
    background: #3b93f1;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 0.7rem 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    white-space: nowrap;
}

.dst-search-button:hover {
    background: #337fd1;
}

.dst-spinner {
    width: 56px;
    height: 56px;
    border: 6px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: dst-spin 0.75s linear infinite;
}

@keyframes dst-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .domeneshop-transfer-search {
        flex-direction: column;
        max-width: 100%;
    }

    .domeneshop-transfer-search input[type="text"] {
        border-radius: 6px 6px 0 0;
        border-right: 1px solid #ccc;
        border-bottom: none;
    }

    .dst-search-button {
        border-radius: 0 0 6px 6px;
        width: 100%;
        box-sizing: border-box;
    }
}
