#fw-section-custom-html-509fc6a6-2218-41cd-aafb-78a017513acd {

table {
    margin-left: auto;
  margin-right: auto;
            width: 50%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            min-width: 400px;
        }

        thead {
           margin-left: auto;
  margin-right: auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        th {
            padding: 20px 25px;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
        }

        th:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        tbody tr {
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        tbody tr:hover {
            background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
        }

        tbody tr:last-child {
            border-bottom: none;
        }

        td {
            padding: 18px 25px;
            font-size: 15px;
            color: #333;
            position: relative;
        }

        td:first-child {
            font-weight: 600;
            color: #667eea;
        }
}