/* 通用表单样式 */
.gps-submission-form, .gps-search-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gps-form-group {
    margin-bottom: 1.5rem;
}

.gps-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.required {
    color: #dc3545;
}

.gps-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.gps-form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.gps-btn {
    padding: 0.75rem 1.5rem;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gps-btn:hover {
    background: #005177;
}

/* 提示信息样式 */
.gps-alert {
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.gps-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gps-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 搜索结果样式 */
.gps-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    border: 1px solid #eee;
}

.gps-result-list {
    list-style: none;
    padding: 0;
}

.gps-result-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.gps-result-list li:last-child {
    border-bottom: none;
}

.gps-result-list a {
    color: #0073aa;
    text-decoration: none;
}

.gps-result-list a:hover {
    text-decoration: underline;
}

/* 自定义验证错误提示 */
.gps-validation-error {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
    font-size: 0.9rem !important;
}