#ageo_geotaggingForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

#ageo_geotaggingForm input,
#ageo_geotaggingForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

#ageo_geotaggingForm input:focus,
#ageo_geotaggingForm textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

#ageo_geotaggingForm input[type="file"] {
    padding: 8px;
    border: 2px dashed #ddd;
    background-color: #fff;
}

#ageo_geotaggingForm input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.location-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.location-group input {
    flex: 1;
}

#ageo_getLocation {
    padding: 10px 15px;
    border: 1px solid var(--black);
    border-radius: 5px;
    background-color: var(--black);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

#ageo_getLocation:hover {
    background-color: var(--black);
}

#ageo_geotaggingForm button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: var(--green);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

#ageo_geotaggingForm button[type="submit"]:hover {
    background-color: #218838;
}

#ageo_geotaggingForm button[type="submit"]:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

#ageo_uploadOutput {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}

#ageo_uploadOutput p {
    margin: 0;
    padding: 0;
}