﻿body {

}
/* ---------------------------------------------------
   list section 
----------------------------------------------------- */

.card {
    /*    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.4) !important;*/
    border-radius: 8px;
    box-shadow: none;
    border: none;
    border: 1px solid rgba(0, 0, 0, .125);
}



/* ===== Table Wrapper ===== */
.table-responsive {
    margin-top: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ===== Table Base ===== */
#tblCase {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

    /* ===== Table Header ===== */
    #tblCase thead th {
        background-color: #155f5f;
        color: white;
        text-align: center;
        padding: 12px;
        border: 1px solid #e0e0e0;
        font-weight: 600;
    }
table.dataTable thead th, table.dataTable tfoot th {
    background-color: #155f5f;
    color: white;
    text-align: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    font-weight: 600;
}
/* ===== Table Body ===== */
#tblCase tbody td {
    text-align: center;
    padding: 10px;
    border: 1px solid #d1d5db;
    vertical-align: middle;
}

table.dataTable.display tbody td {
    text-align: center;
    padding: 10px;
    border: 1px solid #d1d5db;
    vertical-align: middle;
}
table.dataTable{
    border-collapse:collapse;
}
/* Alternate Row Colors */
#tblCase tbody tr:nth-child(even) {
    background-color: #f5f7fa;
}

    #tblCase tbody tr:nth-child(odd) {
        background-color: #ffffff;
    }

    /* Hover Effect */
    #tblCase tbody tr:hover {
        background-color: #e6f0ff;
        transition: 0.2s ease-in-out;
    }

    /* ===== Icons ===== */
    #tblCase a i {
        color: #004aad;
        transition: transform 0.2s ease, color 0.2s ease;
    }

        #tblCase a i:hover {
            color: #001f66;
            transform: scale(1.15);
        }

/* ===== DataTables Controls (if enabled) ===== */
.dataTables_length, .dataTables_filter {
    margin-bottom: 10px;
}

    .dataTables_filter label,
    .dataTables_length label {
        font-weight: 500;
        color: #333;
    }

    .dataTables_filter input {
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 5px 8px;
        font-size: 14px;
    }

    .dataTables_length select {
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 3px 6px;
        font-size: 14px;
    }

table.dataTable.display tbody td a i {
    color: #004aad;
    transition: transform 0.2s ease, color 0.2s ease;
}





