/* Page title h1 styles */
h1 {
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(58,60,61,0.10), 0 1px 0 #7b0b13;
}

body {
    font-family: 'Titillium Web', 'Franklin Gothic Medium', 'Franklin Gothic', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #3a3c3d;
}

ul {
    list-style: none;
    padding: 0;
}
li {
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(58,60,61,0.04);
    padding: 1.2rem 1.5rem;
    transition: box-shadow 0.2s;
}
li:hover {
    box-shadow: 0 4px 16px rgba(58,60,61,0.10);
}
a {
    text-decoration: none;
    color: #b82e47;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Titillium Web', 'Franklin Gothic Medium', 'Franklin Gothic', Arial, sans-serif;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #ed1c24;
}
.desc {
    color: #3a3c3d;
    font-size: 1rem;
    margin-top: 0.3rem;
}

/* Forms table styles */
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    padding: 12px;
    text-align: left;
    color: #dc3545;
}
.action-icon {
    color: #b82e47;
    font-size: 1.2em;
}
.report-date {
    color: #3a3c3d;
    margin-bottom: 2rem;
    font-weight: 400;
}
.search-container {
    margin: 20px 0;
    display: flex;
    align-items: center;
}
.search-input {
    font-family: 'Titillium Web', Arial, sans-serif;
    padding: 8px 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    width: 300px;
    margin-right: 10px;
}
.search-input:focus {
    outline: none;
    border-color: #0056b3;
}
.search-icon {
    color: #666;
    font-size: 1.2em;
    margin-right: 10px;
}
tr.hidden {
    display: none;
}

/* Map page specific styles */
#header {
    background-color: #b82e47;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
}
#container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
}
#map-container {
    flex-grow: 1;
    width: 100%;
}
#map-frame {
    width: 100%;
    height: 100%;
    border: none;
}
#footer {
    background-color: #a09e9e;
    color: #3a3c3d;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}
.responsive-table {
  width: 100%;
  overflow-x: auto;
}
a:focus, button:focus, .action-icon:focus {
  outline: 2px solid #ed1c24;
  outline-offset: 2px;
}
