﻿/* Page Title */
.page-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: #1a6b6d;
    text-decoration: none;
}

    .breadcrumb-item a:hover {
        text-decoration: underline;
    }

.breadcrumb-item.active {
    color: #dc3545;
}

/* Custom Table */
.custom-table {
    border-collapse: separate;
    border-spacing: 0;
}

.table-header {
    background-color: #1a6b6d;
    color: white;
}

    .table-header th {
        padding: 1rem;
        font-weight: 500;
        border: none;
        vertical-align: middle;
    }

.sortable {
    cursor: pointer;
    user-select: none;
}

    .sortable:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.custom-table tbody tr {
    border-bottom: 1px solid #dee2e6;
}

    .custom-table tbody tr:hover {
        background-color: #f8f9fa;
    }

.custom-table td {
    padding: 1rem;
    vertical-align: middle;
}

/* Status Badges */
.badge-success {
    background-color: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.badge-alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.badge-secondary {
    background-color: #e2e3e5;
    color: #383d41;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Card */
.card {
    border: none;
    border-radius: 8px;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Action Buttons */
.btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Dropdown menu styling */
.dropdown-menu {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
    }

    .dropdown-item.text-danger:hover {
        background-color: #f8d7da;
    }
