/* OpenCommons Municipal Platform Global Theme Mapping */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body, html { 
    width: 100%; 
    height: 100%; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    background: #121212; 
    color: #FFFFFF; 
    overflow: hidden; 
}

.app-container { 
    width: 100%; 
    height: 100%; 
    position: relative; 
}

.view-panel { 
    width: 100%; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    padding: 24px; 
    background: #181818; 
}

.hidden { 
    display: none !important; 
}

/* Authentication Layout Form Contexts */
h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

h2 span {
    color: #A6A6A6; /* Logo Grey Accent */
}

input[type="email"] { 
    width: 100%; 
    max-width: 340px; 
    padding: 16px; 
    border-radius: 8px; 
    border: 2px solid #A6A6A6; 
    background: #222222; 
    color: #FFFFFF; 
    font-size: 16px; 
    margin-top: 24px;
    margin-bottom: 16px; 
    text-align: center; 
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    outline: none;
    border-color: #001EFF; /* Focused Logo Blue */
}

/* Operational Interaction Triggers */
button, .action-btn { 
    width: 100%; 
    max-width: 340px; 
    padding: 16px; 
    border-radius: 8px; 
    border: none; 
    background: #001EFF; /* Primary Logo Blue */
    color: #FFFFFF; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: background 0.2s;
}

button:hover, .action-btn:hover {
    background: #0019D9;
}

/* Conflict Resolution Card Views */
.incident-card { 
    background: #242424; 
    border-left: 4px solid #FFC000; /* Attention-grabber Logo Yellow */
    border-radius: 8px; 
    padding: 16px; 
    margin-bottom: 16px; 
    display: flex; 
    align-items: center; 
    width: 100%; 
    max-width: 400px; 
}

.thumb-preview { 
    width: 72px; 
    height: 72px; 
    object-fit: cover; 
    border-radius: 6px; 
    margin-right: 16px; 
    border: 1px solid #A6A6A6;
}

.card-details { 
    flex: 1; 
    font-size: 14px; 
    color: #E0E0E0;
}

.still-there-btn { 
    background: #009933; /* Validation Action Logo Green */
    padding: 10px; 
    margin-top: 8px; 
    font-size: 14px; 
    border-radius: 6px;
}

.still-there-btn:hover {
    background: #00802B;
}

#file-new-report-btn {
    background: #8FA343; /* Skyline Olive for alternative routes */
    margin-top: 12px;
}

#file-new-report-btn:hover {
    background: #7A8C39;
}

/* Viewfinder Viewport Controls */
.viewfinder-container { 
    width: 100%; 
    flex: 1; 
    position: relative; 
    background: #000000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

#video-viewport { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.controls { 
    height: 130px; 
    width: 100%; 
    background: #181818; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-top: 1px solid #242424;
}

.capture-trigger-circle { 
    width: 76px; 
    height: 76px; 
    border-radius: 50%; 
    background: #FFFFFF; 
    border: 6px solid #001EFF; /* Outer Boundary Logo Blue */
    transition: transform 0.1s;
}

.capture-trigger-circle:active {
    transform: scale(0.92);
}