/* Общие стили */
body {
    background: #f0f6fc;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a2c3e;
}

body.dark-theme {
    background: #121e2a;
    color: #e0e8f0;
}

body.dark-theme .card {
    background-color: #1e2e3e;
    border-color: #2a4058;
}

body.dark-theme .card-header {
    background-color: #2a5a78;
}

.btn-fish {
    background: #4a9ec9;
    border: none;
    color: white;
    transition: all 0.2s ease;
}
.btn-fish:hover {
    background: #3a8abf;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-fish:active {
    transform: translateY(0);
}
body.dark-theme .btn-fish {
    background: #3a7aa0;
}
body.dark-theme .btn-fish:hover {
    background: #2a5a7a;
}

.navbar-blue {
    background: #5aaece !important;
}
body.dark-theme .navbar-blue {
    background: #2a6a8c !important;
}

.card-header {
    background-color: #5aaece;
    color: white;
    border-bottom: none;
}
.top-fish-table th,
.time-table th,
.bait-table th {
    background-color: #5aaece;
    color: white;
}
body.dark-theme .top-fish-table th,
body.dark-theme .time-table th,
body.dark-theme .bait-table th {
    background-color: #3a7aa0;
}

.edit-icon {
    color: #5aaece;
}
.edit-icon:hover {
    color: #3a8abf;
}
body.dark-theme .edit-icon {
    background-color: #1e2e3e;
}

.form-control:focus,
.form-select:focus {
    border-color: #5aaece;
    box-shadow: 0 0 0 0.2rem rgba(90, 174, 206, 0.25);
}

.fish-name {
    color: #4a9ec9;
}
body.dark-theme .fish-name {
    color: #6ab0e0;
}

a:not(.btn) {
    color: #3a8abf;
}
a:not(.btn):hover {
    color: #2a6a8c;
}
body.dark-theme a:not(.btn) {
    color: #6ab0e0;
}
body.dark-theme a:not(.btn):hover {
    color: #8cc8f0;
}

/* Дополнительно */
.help-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}
body.dark-theme .help-text {
    color: #a0b8d0;
}