Und jetzt noch das **CSS** mit den Push-Status-Styles:
Action: file_editor create /app/assets/style.css --file-text "/**
 * Tenify Lite Pro - Styles
 * Version 2.0.0
 */

/* ========================================
   GRUNDLEGENDE STYLES
======================================== */
#tenifylite-app {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

#tenifylite-login-wrapper {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#tenifylite-login-wrapper h3 {
    margin: 0 0 20px 0;
    font-size: 1.5em;
    text-align: center;
}

#tenifylite-login-wrapper label {
    display: block;
    margin: 15px 0 5px 0;
    font-weight: 500;
}

#tenifylite-login-wrapper input[type=\"tel\"],
#tenifylite-login-wrapper input[type=\"text\"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

#tenifylite-login-wrapper input:focus {
    border-color: #4CAF50;
    outline: none;
}

#tenifylite-login-wrapper button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#tenifylite-login-wrapper button:hover {
    background: #388E3C;
}

#tl-login-msg {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ========================================
   HEADER
======================================== */
.tl-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.tl-header span {
    flex: 1;
    font-weight: 600;
}

.tl-header button {
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.tl-header button:hover {
    background: rgba(255,255,255,0.3);
}

/* ========================================
   PUSH-STATUS BAR
======================================== */
.tl-push-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.tl-push-enabled {
    background: #E8F5E9;
    color: #2E7D32;
}

.tl-push-disabled {
    background: #FFF3E0;
    color: #E65100;
}

.tl-push-status button {
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.tl-push-enabled button {
    background: #C8E6C9;
    color: #1B5E20;
}

.tl-push-disabled button {
    background: #FFCC80;
    color: #BF360C;
}

.tl-push-status button:hover {
    opacity: 0.8;
}

/* ========================================
   NAVIGATION
======================================== */
.tl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #f5f5f5;
}

.tl-nav button {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.tl-nav button:hover {
    background: #388E3C;
    transform: scale(1.1);
}

#tl-current-date {
    font-size: 18px;
    font-weight: 600;
    min-width: 280px;
    text-align: center;
}

/* ========================================
   KALENDER GRID
======================================== */
#tl-calendar-grid {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.tl-grid-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

.tl-grid-row:last-child {
    border-bottom: none;
}

.tl-grid-header {
    background: #f8f8f8;
    font-weight: 600;
}

.tl-grid-cell {
    position: relative;
	overflow: hidden;
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid #e8e8e8;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tl-grid-cell:last-child {
    border-right: none;
}

.tl-time-col {
    flex: 0 0 80px;
    background: #fafafa;
    font-weight: 500;
    font-size: 14px;
    color: #666;
}

/* ========================================
   SLOT-ZUSTÄNDE
======================================== */
.tl-slot {
    cursor: default;
    transition: all 0.2s;
    position: relative;
}

.tl-slot.tl-available {
    cursor: pointer;
    background: #E8F5E9;
}

.tl-slot.tl-available:hover {
    background: #C8E6C9;
    transform: scale(1.02);
}

.tl-slot.tl-booked {
    background: #FFEBEE;
    cursor: not-allowed;
}

.tl-slot.tl-own-booking {
    background: #E3F2FD;
    cursor: pointer;
}

.tl-slot.tl-past {
    background: #f5f5f5;
    color: #ccc;
}

.tl-booker {
    font-size: 12px;
    font-weight: 500;
   	display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.tl-cancel-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    padding: 0;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

.tl-own-booking:hover .tl-cancel-btn {
    opacity: 1;
}

.tl-cancel-btn:hover {
    background: #c62828;
}

/* ========================================
   MODAL
======================================== */
.tl-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tl-modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.tl-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.tl-modal-close:hover {
    color: #333;
}

.tl-modal h3 {
    margin: 0 0 20px 0;
    font-size: 1.4em;
}

#tl-modal-info {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tl-modal label {
    display: block;
    margin: 15px 0 8px 0;
    font-weight: 500;
}

#tl-search-member {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

#tl-search-member:focus {
    border-color: #4CAF50;
    outline: none;
}

#tl-search-results {
    max-height: 150px;
    overflow-y: auto;
    margin-top: 8px;
}

.tl-search-item {
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.tl-search-item:hover {
    background: #E8F5E9;
}

.tl-no-results {
    padding: 10px;
    color: #999;
    font-style: italic;
}

#tl-selected-members {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tl-selected-member {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #E3F2FD;
    border-radius: 20px;
    font-size: 14px;
}

.tl-remove-member {
    cursor: pointer;
    color: #1976D2;
    font-weight: bold;
}

.tl-remove-member:hover {
    color: #c62828;
}

#tl-confirm-booking {
    width: 100%;
    padding: 14px;
    margin-top: 25px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#tl-confirm-booking:hover {
    background: #388E3C;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 600px) {
    #tenifylite-app {
        padding: 10px;
    }
    
    .tl-header {
        flex-wrap: wrap;
    }
    
    .tl-header span {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .tl-time-col {
        flex: 0 0 60px;
        font-size: 12px;
    }
    
    .tl-grid-cell {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    #tl-current-date {
        font-size: 14px;
        min-width: auto;
    }
    
    .tl-modal-content {
        padding: 20px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.tl-push-enabled #tl-push-btn {
    animation: pulse 2s infinite;
}

/* ========================================
   CHECKBOX STYLES
======================================== */
#tenifylite-login-wrapper input[type=\"checkbox\"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

#tenifylite-login-wrapper label:has(input[type=\"checkbox\"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
/* FIX: iOS/Safari Flexbox overflow/ellipsis */
.tl-grid-cell {
	min-width: 0;              /* extrem wichtig bei flex */
}

.tl-booker {
	width: 100%;               /* damit ellipsis korrekt begrenzt */
}

/* Optional: schöner, weil der Text dann innerhalb der Zelle bleibt */
.tl-grid-cell {
	align-items: stretch;      /* statt center */
}

.tl-booker {
	text-align: center;
}
/* ================================
   HARD FIX: Text darf nicht in Nachbarspalten laufen (iOS/Safari)
================================ */

/* Wichtig: Flex-Items müssen shrinken dürfen */
#tl-calendar-grid .tl-grid-row > .tl-grid-cell {
  flex: 1 1 0% !important;     /* flex-basis 0 erzwingt echte Spalten */
  min-width: 0 !important;     /* erlaubt Shrinking in Safari */
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Time column fix */
#tl-calendar-grid .tl-grid-row > .tl-time-col {
  flex: 0 0 80px !important;
  min-width: 80px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#tl-services{
	margin-top:28px;
	padding-top:10px;
	border-top:1px solid #dbe4ea;
}

#tl-services h3{
	margin:0 0 14px;
	font-size:26px;
	color:#20364d;
}

.tl-service-day{
	background:#f8fbff;
	border:1px solid #d9e5f0;
	border-radius:16px;
	padding:14px 16px;
	margin-bottom:16px;
	box-shadow:0 8px 20px rgba(13,94,168,.05);
}

.tl-service-day h3{
	margin:0 0 12px;
	font-size:18px;
	color:#1e3a56;
}

.tl-service-slot{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 0;
	border-top:1px solid #e6edf3;
	gap:12px;
}

.tl-service-slot:first-of-type{
	border-top:none;
}

.tl-service-time{
	font-weight:600;
	color:#29435c;
	min-width:110px;
}

.tl-service-action{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
}

.tl-service-user{
	font-weight:600;
	color:#1f3b57;
	background:#eef5fb;
	padding:6px 10px;
	border-radius:999px;
}

.tl-service-signup,
.tl-service-cancel{
	border:none;
	border-radius:10px;
	padding:8px 14px;
	font-weight:600;
	cursor:pointer;
}

.tl-service-signup{
	background:#0d5ea8;
	color:#fff;
}

.tl-service-signup:hover{
	background:#0a4f8d;
}

.tl-service-cancel{
	background:#fff1f1;
	color:#b42318;
	border:1px solid #f3c3c3;
}

.tl-service-cancel:hover{
	background:#ffe2e2;
}

.tl-service-info{
	display:flex;
	flex-direction:column;
	gap:4px;
}

.tl-service-title{
	font-size:14px;
	color:#6b7280;
	font-weight:500;
}

.tl-service-week{
	margin:0 0 28px 0;
	padding:18px;
	border:1px solid #d9e2ec;
	border-radius:18px;
	background:#f8fbff;
}

.tl-service-week-title{
	font-size:20px;
	font-weight:800;
	color:#18324a;
	margin-bottom:16px;
}

.tl-service-day{
	margin-bottom:18px;
	padding:16px 18px;
	border:1px solid #d9e2ec;
	border-radius:16px;
	background:#ffffff;
}

.tl-service-day h3{
	margin:0 0 14px 0;
	font-size:18px;
	color:#18324a;
}

.tl-service-slot{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:16px;
	padding:10px 0;
	border-top:1px solid #eef2f7;
}

.tl-service-slot:first-of-type{
	border-top:none;
	padding-top:0;
}

.tl-service-info{
	display:flex;
	flex-direction:column;
	gap:4px;
}

.tl-service-time{
	font-size:18px;
	font-weight:700;
	color:#18324a;
}

.tl-service-title{
	font-size:14px;
	color:#6b7280;
	font-weight:500;
}

.tl-service-user{
	font-weight:600;
	color:#18324a;
}

.tl-service-action{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
}

.tl-service-signup,
.tl-service-cancel{
	background:#0d5ea8;
	color:#fff;
	border:none;
	border-radius:12px;
	padding:10px 16px;
	font-weight:700;
	cursor:pointer;
}

.tl-service-cancel{
	background:#fff;
	color:#18324a;
	border:1px solid #c9d7e6;
}
.tl-service-disabled{
	font-size:14px;
	color:#9ca3af;
	font-style:italic;
}

.tl-push-onboarding {
	margin: 16px 0 20px;
}

.tl-push-onboarding-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: linear-gradient(135deg, #0b5cab 0%, #2c7be5 100%);
	color: #fff;
	padding: 18px;
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(11, 92, 171, 0.22);
}

.tl-push-onboarding-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 16px;
	background: rgba(255,255,255,0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.tl-push-onboarding-content h3 {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
}

.tl-push-onboarding-content p {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255,255,255,0.92);
}

.tl-push-onboarding-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tl-btn-primary {
	background: #fff;
	color: #0b5cab;
	border: 0;
	border-radius: 14px;
	padding: 12px 16px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.tl-btn-primary:hover {
	transform: translateY(-1px);
}

.tl-ios-push-note {
	margin-top: 12px;
	font-size: 13px;
	line-height: 1.45;
	background: rgba(255,255,255,0.14);
	padding: 10px 12px;
	border-radius: 12px;
}

.tl-slot.tl-booked {
	background: #e5e7eb;
	color: #111827;
}

.tl-slot.tl-booked .tl-booker {
	color: inherit;
}

.tl-slot.tl-own-booking {
	background: #16a34a;
	color: #ffffff;
	font-weight: 700;
}

.tl-slot.tl-own-booking .tl-booker {
	color: #ffffff;
}

.tl-slot.tl-own-booking:hover {
	background: #15803d;
}

.tenify-settings-cards{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:16px;
	margin-top:8px;
}
.tenify-setting-card{
	background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
	border:1px solid #d9e2ec;
	border-radius:18px;
	padding:18px;
	box-shadow:0 10px 24px rgba(16,42,67,.06);
}
.tenify-setting-icon{
	font-size:24px;
	margin-bottom:10px;
}
.tenify-setting-label{
	font-size:14px;
	font-weight:700;
	color:var(--muted);
	margin-bottom:10px;
	text-transform:uppercase;
	letter-spacing:.04em;
}
.tenify-setting-input{
	width:100%;
	padding:14px 12px;
	border:1px solid #cfd8e3;
	border-radius:12px;
	background:#fff;
	font-size:22px;
	font-weight:800;
	color:var(--text);
	text-align:center;
}
.tenify-setting-help{
	margin-top:10px;
	font-size:13px;
	color:var(--muted);
	text-align:center;
}
.tl-nav{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	background:linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
	border:1px solid #e5e7eb;
	border-radius:22px;
	padding:14px 16px;
	margin:14px 0 20px;
	box-shadow:0 12px 28px rgba(15,23,42,0.08);
}

#tl-prev,
#tl-next{
	flex:0 0 auto;
	width:46px;
	height:46px;
	border:none;
	border-radius:14px;
	background:#eef2f7;
	color:#1f2937;
	font-size:26px;
	font-weight:700;
	line-height:1;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	transition:all .18s ease;
	box-shadow:inset 0 0 0 1px #d9e2ec;
}

#tl-prev:hover,
#tl-next:hover{
	background:#e2e8f0;
	transform:translateY(-1px);
}

#tl-prev:active,
#tl-next:active{
	transform:translateY(0);
}

#tl-current-date{
	flex:1;
	text-align:center;
	font-size:30px;
	font-weight:800;
	letter-spacing:-0.03em;
	color:#1f2937;
	line-height:1.15;
	padding:0 8px;
}

@media (max-width: 768px){
	.tl-nav{
		padding:12px;
		border-radius:18px;
		gap:8px;
	}

	#tl-prev,
	#tl-next{
		width:42px;
		height:42px;
		border-radius:12px;
		font-size:22px;
	}

	#tl-current-date{
		font-size:20px;
	}
}
@media (max-width:1100px){
	.tenify-settings-cards{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}
@media (max-width:700px){
	.tenify-settings-cards{
		grid-template-columns:1fr;
	}
}

@media (max-width: 640px) {
	.tl-push-onboarding-card {
		flex-direction: column;
		border-radius: 18px;
	}
}

/* Inhalt begrenzen */
#tl-calendar-grid .tl-booker {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
"
Observation: Create successful: /app/assets/style.css