body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4; /* A light gray background */
    color: #333; /* Dark gray text */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .mitchopped-theme body {
        margin: 0; /* Remove margin on mobile */
    }
}

nav {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav a {
    color: white;
    text-decoration: none;
}

.content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Media query for mobile screens (max-width: some breakpoint, e.g., 768px) */
@media (max-width: 768px) {
    .content {
        padding: 0; /* Remove padding on mobile */
    }
}

.flashes {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.flashes li {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.flashes li.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flashes li.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

