.form-container { max-width: 600px; margin: 20px auto; padding: 20px; border: 1px solid #ccc; border-radius: 8px; }
.form-group { margin-bottom: 15px; }
.form-group label { font-weight: bold; }
.btn-submit { background-color: #28a745; color: white; }
.btn-cancel { background-color: #dc3545; color: white; }
.btn-select-location { background-color: #007bff; color: white; }
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-content {
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    height: 500px;
    max-height: 80vh;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.modal-header h5 {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
.modal-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.map-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 1000;
}
.map-search {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Kanit', sans-serif;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    outline: none;
}
.current-location-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background: #3498db;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
}
#modalMap {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.modal-footer {
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
}
.btn-success {
    background: #28a745;
    color: #fff;
}