/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;  /* Remove hover effect */
}

/* Container for the entire app */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.navbar-left a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.navbar-right span {
    font-weight: 500;
    font-size: 16px;
}

.navbar-right a {
    color: #000;
    font-weight: 500;
}

/* List headers */
.list-header {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

/* Styling for list items */
.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

/* Create new object button */
.create-object {
    justify-content: center;
    font-weight: 600;
    padding: 15px 20px;
    border: 1px solid #000;
    text-align: center;
}

/* Form and input styles */
.form-group {
    margin-bottom: 15px;
}

input[type="text"], input[type="number"], input[type="file"], select {
    padding: 9px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-top: 8px;
    background-color: #f9f9f9;
}

input[type="text"]:focus, input[type="number"]:focus, input[type="file"]:focus, select:focus {
    border-color: #333;
    outline: none;
}

/* Button */
button {
    padding: 9px;
    background-color: #000;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}

/* Post list and items */
.post-list {
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}

.post-item {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

/* General styling for form inputs and lists */
ul {
    padding: 0;
    list-style: none;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

ul li {
    font-size: 16px;
    margin-bottom: 10px;
}