html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: sans-serif;
    color: white;
}

/* Background for index (main menu) */
body#index {
    background-image: url('assets/images/main_menu.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Background for all other pages */
body:not(#index) {
    background-image: url('assets/images/background.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

/* Page title */
h1 {
    text-align: center;
    margin-top: 120px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px #000;
}

/* Section titles (e.g. Suspects, Weapons) */
h2 {
    font-size: 2em;
    text-align: center;
    text-shadow: 1px 1px 3px #000;
    margin-bottom: 20px;
}

/* Location display */
#location {
    text-align: center;
    font-size: 1.5em;
    margin: 20px auto;
    font-weight: bold;
    text-shadow: 1px 1px 3px black;
}

/* Button styling */
button {
    display: inline-block;
    margin: 5px;
    padding: 9px 15px;
    font-size: 0.9em;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Instructions modal */
#instructionsModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    z-index: 1000;
    max-width: 80%;
    color: white;
}

/* Layout */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.column {
    width: 45%;
}

/* Suspect/Weapon items */
.item {
    margin-bottom: 25px;
    font-size: 1.3em;
    display: flex;
    align-items: right;
    gap: 15px;
}

/* Images */
.item img {
    width: 100px;
    height: auto;
}

/* Radio button styling */
input[type="radio"] {
    transform: scale(1.5);
    accent-color: #4b6cb7;
    cursor: pointer;
}
