body {
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
}
.container {
    max-width: 800px;
    margin-top: 30px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}
.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4a90e2;
}
.form-container {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}
.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
select, input[type="text"] {
    background-color: #3a3a3a;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 8px;
    border-radius: 4px;
    font-size: 16px;
}
select {
    width: 200px;
}
input[type="text"] {
    width: 150px;
}
.button-group {
    display: flex;
    gap: 10px;
    align-items: center;
}
button {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #357abd;
}
.results-container {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.results-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}
.grid-header, .grid-cell {
    padding: 10px;
    background-color: #3a3a3a;
    border-radius: 4px;
}
.grid-header {
    font-weight: bold;
}
.error {
    color: #ff6b6b;
}
.catch-count {
    color: #28a745; /* Green for catch counts */
}
.nav-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 16px;
}
.nav-link:hover {
    color: #357abd;
}
.content {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
a {
    color: #4a90e2;
    text-decoration: none;
}
a:hover {
    color: #357abd;
}

/* Additional styles for baitfinder results */
.species-card {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.species-header {
    color: #4a90e2;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.bait-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #3a3a3a;
    color: #e0e0e0;
}

.time-badge {
    display: inline-block;
    background-color: #3a3a3a;
    color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.9em;
    border: 1px solid #555;
}

.alert {
    border-radius: 4px;
}

.spinner-border {
    color: #4a90e2;
}

.version-info {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 0.9em;
}

/* Feedback form styles */
.feedback-section {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.feedback-section h4 {
    color: #4a90e2;
    margin-bottom: 15px;
    text-align: center;
}

.feedback-form-group {
    margin-bottom: 15px;
}

.feedback-form-group input,
.feedback-form-group textarea {
    background-color: #3a3a3a;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.feedback-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-form-group input:focus,
.feedback-form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.feedback-btn {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.feedback-btn:hover {
    background-color: #357abd;
}

.feedback-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}