/* ------------------------------------------------------------
   GLOBAL PAGE STYLING
------------------------------------------------------------ */
body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    padding: 40px;
    margin: 0;
    text-align: center;
}

h1, h2 {
    color: #333;
}

/* ------------------------------------------------------------
   CONTAINER BOXES (used on index + forms)
------------------------------------------------------------ */
.container {
    background: white;
    padding: 30px;
    width: 60%;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

/* ------------------------------------------------------------
   BUTTONS
------------------------------------------------------------ */
a.button,
button,
input[type="submit"] {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px;
    background: #0078D7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

a.button:hover,
button:hover,
input[type="submit"]:hover {
    background: #005fa3;
}

/* Delete buttons */
.delete-btn {
    background: #d9534f;
    padding: 6px 12px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.delete-btn:hover {
    background: #c9302c;
}

/* Report stolen button */
.report-btn {
    background: #d9534f;
    padding: 6px 12px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.report-btn:hover {
    background: #c9302c;
}

/* Back buttons */
.back-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0078D7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

.back-btn:hover {
    background: #005fa3;
}

/* ------------------------------------------------------------
   FORMS
------------------------------------------------------------ */
form {
    margin-top: 20px;
}

label {
    display: block;
    margin: 10px 0;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
select,
textarea {
    padding: 8px;
    width: 60%;
    max-width: 300px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

/* ------------------------------------------------------------
   TABLES
------------------------------------------------------------ */
table {
    width: 90%;
    margin: auto;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #aaa;
    padding: 10px;
    text-align: left;
}

th {
    background: #0078D7;
    color: white;
}

img {
    max-width: 120px;
    height: auto;
    border: 1px solid #ccc;
}

/* ------------------------------------------------------------
   LINKS
------------------------------------------------------------ */
a {
    color: #0078D7;
}

a:hover {
    color: #005fa3;
}
.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin: 10px 0;
}

