﻿/* Wrapper */
.custom-table-wrapper {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 14px;
}

/* Table */
.custom-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

    /* Header */
    .custom-table thead {
        background-color: #e9e9e9;
    }

        .custom-table thead th {
            font-weight: 600;
            border-bottom: 1px solid #ddd;
            padding: 14px;
        }

    /* Rows */
    .custom-table tbody td {
        padding: 14px;
        vertical-align: middle;
        border-top: 1px solid #eee;
    }

    /* Hover effect */
    .custom-table tbody tr:hover {
        background-color: #f9f9f9;
    }

/* Action column */
.action-column {
    min-width: 140px;
}

/* Action buttons */
.action-btn {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    border-radius: 25px;
    font-weight: 500;
}

    .action-btn:last-child {
        margin-bottom: 0;
    }

/* Red button style like screenshot */
.btn-danger {
    background-color: #e31c1c;
    border: none;
}

    .btn-danger:hover {
        background-color: #c51616;
    }
