.ed-form-frontend {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.ed-form-group {
    margin-bottom: 20px;
}

.ed-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ed-form-group input[type="text"],
.ed-form-group input[type="email"],
.ed-form-group input[type="tel"],
.ed-form-group input[type="url"],
.ed-form-group select,
.ed-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ed-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ed-coords-help {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.ed-coords-help input {
    flex: 1;
    background: #f0f0f0;
}

.ed-btn-primary,
.ed-btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.ed-btn-primary {
    background: #0073aa;
    color: white;
}

.ed-btn-secondary {
    background: #6c757d;
    color: white;
    margin-top: 10px;
}

.ed-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.ed-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ed-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ed-alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}