#ft-download-popup {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 999999;
}

.ft-popup-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.7);
}

.ft-popup-content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		background: white;
		border-radius: 8px;
		box-shadow: 0 4px 20px rgba(0,0,0,0.3);
		max-width: 400px;
		width: 90%;
		max-height: 90vh;
		overflow-y: auto;
}

.ft-popup-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 20px 0;
		border-bottom: 1px solid #eee;
		margin-bottom: 20px;
}

.ft-popup-header h3 {
		margin: 0;
		color: #000;
		font-size: 20px;
}

.ft-popup-close {
		cursor: pointer;
		font-size: 24px;
		color: #999;
		line-height: 1;
}

.ft-popup-close:hover {
		color: #000;
}

#ft-download-form {
		padding: 0 20px 20px;
}

.ft-form-group {
		margin-bottom: 15px;
}

.ft-form-group label {
		display: block;
		margin-bottom: 5px;
		font-weight: bold;
		color: #000;
}

.ft-form-group input {
		width: 100%;
		padding: 10px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 14px;
		box-sizing: border-box;
}

.ft-form-group input:focus {
		border-color: #00d9ff;
		outline: none;
		box-shadow: 0 0 5px rgba(0,115,170,0.3);
}

.ft-privacy-notice {
		font-size: 12px;
		color: #666;
		line-height: 1.4;
		padding: 10px;
		background: #f9f9f9;
		border-radius: 4px;
}

.ft-submit-btn {
		width: 100%;
		padding: 12px;
		background: #00d9ff;
		color: white;
		border: none;
		border-radius: 4px;
		font-size: 16px;
		cursor: pointer;
		transition: background 0.3s;
}

.ft-submit-btn:hover {
		background: #0091ab;
}

.ft-download-link {
		cursor: pointer;
}

/* Bestehende Styles + diese Ergänzungen */

.ft-submit-btn:disabled {
		background: #ccc;
		cursor: not-allowed;
}

.ft-form-group input:invalid {
		border-color: #dc3232;
}

.ft-form-group input:valid {
		border-color: #46b450;
}

/* Loading Animation */
.ft-submit-btn.loading::after {
		content: '';
		display: inline-block;
		width: 12px;
		height: 12px;
		margin-left: 8px;
		border: 2px solid transparent;
		border-top: 2px solid #fff;
		border-radius: 50%;
		animation: ft-spin 1s linear infinite;
}

@keyframes ft-spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
}