        #kampfrollenspiel-tabelle {
            width: 100% !important;
            border-collapse: collapse !important;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
            margin-bottom: 20px !important;
            background-color: white !important;
        }
        #kampfrollenspiel-tabelle, 
        #kampfrollenspiel-tabelle th, 
        #kampfrollenspiel-tabelle td {
            border: 1px solid #ddd !important;
        }
        #kampfrollenspiel-tabelle th, 
        #kampfrollenspiel-tabelle td {
            padding: 12px !important;
            text-align: left !important;
        }
        #kampfrollenspiel-tabelle th {
            background-color: #5a8f7b !important;
            color: white !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
        }
        #kampfrollenspiel-tabelle tr:nth-child(even) {
            background-color: #f2f2f2 !important;
        }
        #kampfrollenspiel-tabelle tr:hover {
            background-color: #d1e7dd !important;
        }
        #kampfrollenspiel-tabelle td {
            font-size: 14px !important;
            color: #555 !important;
        }
        #kampfrollenspiel-tabelle td:first-child {
            font-weight: bold !important;
        }
        @media (max-width: 768px) {
            #kampfrollenspiel-tabelle, 
            #kampfrollenspiel-tabelle thead, 
            #kampfrollenspiel-tabelle tbody, 
            #kampfrollenspiel-tabelle th, 
            #kampfrollenspiel-tabelle td, 
            #kampfrollenspiel-tabelle tr {
                display: block !important;
            }
            #kampfrollenspiel-tabelle th {
                text-align: right !important;
                background-color: #5a8f7b !important;
                color: white !important;
            }
            #kampfrollenspiel-tabelle td {
                padding-left: 50% !important;
                position: relative !important;
            }
            #kampfrollenspiel-tabelle td:before {
                content: attr(data-label) !important;
                position: absolute !important;
                left: 0 !important;
                width: 45% !important;
                padding-left: 15px !important;
                font-weight: bold !important;
                color: #4a4a4a !important;
            }
        }

.weapon-category {
            margin-bottom: 20px;
        }
        .category-title {
            font-size: 24px;
            font-weight: bold;
            color: #00796b;
            margin-bottom: 10px;
            border-bottom: 2px solid #00796b;
            padding-bottom: 5px;
        }
        .weapon-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .weapon-item {
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s, transform 0.3s;
        }
        .weapon-item:hover {
            background-color: #e0f7fa;
            transform: scale(1.02);
        }
        .weapon-title {
            font-size: 20px;
            font-weight: bold;
            color: #00796b;
            margin-bottom: 10px;
        }
        .weapon-description {
            font-size: 14px;
            color: #555;
        }
