        .search-section {
            text-align: center;
            color: white;
        }
        
        .search-section h1 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }
        
.search-form {
	display: flex;
	gap: 0;
	max-width: 800px;
	margin: 0 auto;
	box-shadow: 0 1px 7px rgba(0, 0, 0, 0.06);
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #d9d5d5;
}
        
        .search-input {
            flex: 1;
            padding: 18px 20px;
            font-size: 16px;
            border: none;
            outline: none;
            background: white;
        }
        
        .search-input::placeholder {
            color: #999;
        }
        
        .btn-domain {
            padding: 18px 35px;
            font-size: 16px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        
.btn-search {
	background: #5cb85c;
	color: white;
	border-radius: 0px;
}
        
        .btn-search:hover {
            background: #4cae4c;
        }
        
        .btn-transfer {
            background: #999;
            color: white;
        }
        
        .btn-transfer:hover {
            background: #808080;
        }
        
        .results-section {
            margin-top: 40px;
            background: white;
            border-radius: 8px;
            padding: 30px;
            display: none;
        }
        
        .results-section.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .results-header {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .results-header h2 {
            color: #333;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .domain-result {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .domain-result:last-child {
            border-bottom: none;
        }
        
        .domain-name {
            font-size: 1.1rem;
            color: #333;
            font-weight: 500;
        }
        
        .domain-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .domain-price {
            font-size: 1.2rem;
            color: #5cb85c;
            font-weight: 600;
        }
        
        .domain-status {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .status-available {
            background: #d4edda;
            color: #155724;
        }
        
        .status-taken {
            background: #f8d7da;
            color: #721c24;
        }
        
        .btn-add {
            padding: 8px 20px;
            background: #0a4d68;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-add:hover {
            background: #083d54;
        }
        
        .btn-add:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid #0a4d68;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .transfer-info {
            background: #fff3cd;
            border: 1px solid #ffc107;
            border-radius: 6px;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .transfer-info p {
            color: #856404;
            margin: 0;
            font-size: 0.95rem;
        }
        
        @media (max-width: 768px) {
            .search-section h1 {
                font-size: 1.5rem;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .btn-domain {
                padding: 15px 25px;
            }
            
            .domain-result {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .domain-info {
                width: 100%;
                justify-content: space-between;
            }
        }