body {
    font-family: "Microsoft JhengHei", Arial, sans-serif;
    margin: 0;
    background: #f6f7fb;
    color: #222;
}
.site-header {
    background: #0b4f6c;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.site-header a {
    color: #fff;
    text-decoration: none;
    margin-right: 12px;
}
.container {
    padding: 16px;
}
.card {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}
.form-row label {
    min-width: 160px;
    font-weight: 600;
}
.form-row input, .form-row select, .form-row textarea {
    flex: 1 1 240px;
    padding: 6px 8px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.table th, .table td {
    border: 1px solid #dcdcdc;
    padding: 8px;
    text-align: left;
}
.table th {
    background: #f0f4f8;
}
.actions a {
    margin-right: 8px;
}
.flash {
    margin-top: 12px;
    padding: 10px;
    border-radius: 6px;
}
.flash.success {
    background: #e7f7ea;
    color: #1b5e20;
}
.flash.error {
    background: #fdecea;
    color: #b71c1c;
}
.map-container {
    width: 100%;
    height: 520px;
}
.login-box {
    max-width: 420px;
    margin: 80px auto;
}
.button {
    display: inline-block;
    padding: 8px 16px;
    background: #0b4f6c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.button:hover {
    background: #0a3d52;
}
button {
    padding: 8px 16px;
    background: #0b4f6c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
button:hover {
    background: #0a3d52;
}
.flash.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}
.photo-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}
.photo-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}