/* Table Styles */
.fish-prices-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.fish-prices-table thead tr {
    background-color: #003366;
    color: #ffffff;
    text-align: left;
}

.fish-prices-table th,
.fish-prices-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
}

.fish-prices-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.fish-prices-table tbody tr:last-of-type {
    border-bottom: 2px solid #003366;
}

.fish-prices-table tbody tr:hover {
    background-color: #e0f7fa;
    color: #003366;
}

.fish-status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    background-color: #008B8B;
    color: white;
}

/* Action Buttons */
.kbf-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-right: 5px;
    transition: background-color 0.3s;
    color: white;
}

.kbf-btn-edit {
    background-color: #007bff;
}

.kbf-btn-edit:hover {
    background-color: #0056b3;
}

.kbf-btn-delete {
    background-color: #dc3545;
}

.kbf-btn-delete:hover {
    background-color: #c82333;
}

/* Modal Styles */
.kbf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.kbf-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.kbf-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.kbf-close:hover,
.kbf-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.kbf-form-group {
    margin-bottom: 15px;
}

.kbf-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.kbf-form-group input,
.kbf-form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.kbf-modal-footer {
    text-align: right;
    margin-top: 20px;
}