body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header, nav, footer {
    background-color: #f8f8f8;
    padding: 10px;
}

/* Navigation bar styles */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Navigation links */
nav li {
    float: left;
}

nav li a, nav li button {
    display: block;
    color: #000;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Right-aligned item */
nav li:last-child {
    float: right;
}

nav li a:hover, nav li button:hover {
    background-color: #ddd;
    color: black;
}

main {
    padding: 20px;
}

#statusMessage {
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
}

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

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

.bounty-list {
    list-style-type: none;
    padding: 0;
}

.bounty-list li {
    margin-bottom: 10px;
}

/* Styles for closed bounties */
.closed-bounties .closed {
    color: gray;
    /* You can add text-decoration if desired */
}

/* Style links in closed bounties */
.closed-bounties .closed a {
    color: gray;
    /* Optional: Add styles to indicate it's closed */
}

/* Optional: Remove hover effects for closed bounties */
.closed-bounties .closed a:hover {
    text-decoration: underline;
    /* Potentially change cursor to indicate it's still clickable */
    cursor: pointer;
}

/* Contact form styles */
#contactForm {
    max-width: 600px;
    margin: 20px auto;
}

#contactForm input[type="text"],
#contactForm textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#userWalletAddress {
    font-family: monospace;
    background-color: #f8f8f8;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.help-message {
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 30px;
}

/* Primary button styles */
.primary-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.primary-button:hover {
    background-color: #45a049;
}
