        .gottesdienst-container {
            margin: 20px 0;
            overflow-x: auto;
        }
        
        .gottesdienst-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
            font-size: 14px;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .gottesdienst-table th,
        .gottesdienst-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .gottesdienst-table th {
            background: #f8f9fa;
            font-weight: bold;
            color: #333;
        }
        
        .gottesdienst-table tr:hover {
            background: #f5f5f5;
        }
        
        .gottesdienst-table {
            border: 1px solid #ddd;
        }
        
        /* Responsive Design */
        .desktop-view {
            display: table-cell;
        }
        
        .mobile-view {
            display: none;
        }
        
        @media screen and (max-width: 768px) {
            .gottesdienst-table {
                font-size: 12px;
            }
            
            .gottesdienst-table th,
            .gottesdienst-table td {
                padding: 8px 10px;
            }
        }
        
        @media screen and (max-width: 600px) {
            .desktop-view {
                display: none !important;
            }
            
            .mobile-view {
                display: table-cell !important;
                padding: 15px 10px;
                line-height: 1.5;
            }
            
            .gottesdienst-table,
            .gottesdienst-table thead,
            .gottesdienst-table tbody,
            .gottesdienst-table th,
            .gottesdienst-table td,
            .gottesdienst-table tr {
                display: block;
            }
            
            .gottesdienst-table tr {
                border: 1px solid #ddd;
                margin-bottom: 10px;
                padding: 0;
                background: #fff;
                border-radius: 5px;
            }
            
            .gottesdienst-table td {
                border: none;
                padding: 15px;
                display: block;
            }
        }

.admingd {
	background: #fff;
	padding: 20px;
	margin: 20px 0;
	border-radius: 5px;
}

.admingdform {
	display: inline;
	margin-left: 5px;
}