body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #222;
}

a {
    color: #0b6e99;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header,
.site-footer {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer {
    border-top: 1px solid #e0e0e0;
    border-bottom: none;
}

main {
    padding: 1rem;
}

.box-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.box-hero__media img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.status-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-card__media img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.status-card__body {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-card__meta {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.status-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.status-details li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    border-bottom: 1px solid #eef1f4;
    padding-bottom: 0.35rem;
}

.status-details span {
    color: #6f7a83;
    font-size: 0.9rem;
}

.status-details strong {
    font-size: 1.05rem;
}

.status-details small {
    color: #84909a;
    margin-left: 0.4rem;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.status-links a {
    font-weight: 600;
}

.status-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fff8e6;
    border-left: 4px solid #f4c95d;
    border-radius: 0.3rem;
    color: #6b5620;
}

.media-list,
.item-list,
.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.media-card,
.item-list li {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.media-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-list__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.item-list__actions {
    display: flex;
    gap: 0.5rem;
}

.thumb {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 0.4rem;
    background: #eef1f4;
}

.thumb--small {
    width: 64px;
    height: 64px;
}

.thumb--large {
    width: 280px;
    height: 280px;
}

.thumb--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.9rem;
}

.thumb-cell {
    width: 90px;
}

.media-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.button-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ghost {
    background: transparent;
    color: #0b6e99;
    border: 1px solid #0b6e99;
}

a.lightbox {
    display: inline-block;
}

a.lightbox img {
    display: block;
    cursor: zoom-in;
}

.stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.stats article {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.flash-list {
    list-style: none;
    padding: 0;
}

.flash {
    margin: 0.5rem 0;
    padding: 0.75rem;
    border-radius: 0.25rem;
}

.flash.success {
    background: #e0f7ec;
    color: #1a6b3f;
}

.flash.error {
    background: #fdecea;
    color: #93302b;
}

form {
    display: grid;
    gap: 0.5rem;
    max-width: 480px;
}

label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

input,
select,
button {
    padding: 0.5rem;
    font-size: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin-bottom: 1rem;
}

th,
td {
    border: 1px solid #e0e0e0;
    padding: 0.5rem;
    text-align: left;
}

.button,
button {
    background-color: #0b6e99;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.button:hover,
button:hover {
    background-color: #0a5a7d;
}

form.inline {
    display: inline;
}
