<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Dubai 8 Pool BillardcafĆ© - Hauptstilblatt */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --available-color: #2ecc71;
    --occupied-color: #e74c3c;
    --reserved-color: #f39c12;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-fluid {
    padding: 0;
    height: 100vh;
}

.row {
    margin: 0;
    height: 100%;
}

/* Seitenleiste */
.sidebar {
    background-color: var(--primary-color);
    color: white;
    height: 100vh;
    position: fixed;
    width: 16.666667%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.logo-container {
    background-color: rgba(0, 0, 0, 0.2);
}

.logo-container h2 {
    margin-bottom: 0;
    font-weight: 700;
}

.menu {
    flex-grow: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.nav-link i {
    margin-right: 10px;
}

.user-info {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
}

/* Hauptinhalt */
.main-content {
    margin-left: 16.666667%;
    width: 83.333333%;
    padding: 0;
}

.top-bar {
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.content-area {
    padding: 20px;
    overflow-y: auto;
    height: calc(100vh - 70px);
}

/* Filter-Optionen */
.filter-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.status-indicators {
    display: flex;
    gap: 15px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.status-indicator:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.available:before {
    background-color: var(--available-color);
}

.status-indicator.occupied:before {
    background-color: var(--occupied-color);
}

.status-indicator.reserved:before {
    background-color: var(--reserved-color);
}

/* Tischkarten */
.table-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.table-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.table-card.available .table-header {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--available-color);
}

.table-card.occupied .table-header {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--occupied-color);
}

.table-card.reserved .table-header {
    background-color: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--reserved-color);
}

.table-header h5 {
    margin: 0;
    font-weight: 600;
}

.status-badge {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.table-card.available .status-badge {
    background-color: var(--available-color);
    color: white;
}

.table-card.occupied .status-badge {
    background-color: var(--occupied-color);
    color: white;
}

.table-card.reserved .status-badge {
    background-color: var(--reserved-color);
    color: white;
}

.table-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.table-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.table-info {
    text-align: center;
    margin-bottom: 15px;
}

.timer {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.table-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .sidebar {
        width: 25%;
    }
    
    .main-content {
        margin-left: 25%;
        width: 75%;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .content-area {
        height: auto;
    }
    
    .user-info {
        display: none;
    }
}

/* Modal-Anpassungen */
.modal-content {
    border-radius: 8px;
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px 8px 0 0;
}

.modal-footer {
    border-top: 1px solid #eee;
}

/* Animationen */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.table-card.occupied .timer {
    animation: pulse 2s infinite;
}
</pre></body></html>