/* style-blau.css - Blau angepasste Version */

:root {
  /* Neue blaue Farbpalette */
  --primary-color: #1976D2;
  --primary-light: #64B5F6;
  --primary-dark: #0D47A1;
  --secondary-color: #2196F3;
  --accent-color: #42A5F5;
  --text-color: #263238;
  --light-text: #FFFFFF;
  --background-color: #E8E8E8; /* Helles Grau statt Grün */
  --card-bg: #FFFFFF;
  --border-color: #BBDEFB;
  --shadow-color: rgba(25, 118, 210, 0.2);
  
  /* Neue verspielte Variablen */
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header - Modern mit leichtem 3D-Effekt */
header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--light-text);
  padding: 1rem 0;
  box-shadow: 0 4px 12px var(--shadow-color);
  position: relative;
  z-index: 100;
}

header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(135deg, transparent 25%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.1) 50%, transparent 50%, transparent 75%, rgba(0,0,0,0.1) 75%);
  background-size: 20px 20px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Navigation mit hover Animation */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-sm);
  transition: var(--transition);
  position: relative;
}

nav ul li a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 80%;
  left: 10%;
}

/* Main Content */
main {
  flex: 1;
  padding: 2rem 0;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Karten mit modernem Design */
.card {
  background-color: var(--card-bg);
  border-radius: var(--rounded-md);
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.card-header {
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.3;
}

.view-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.view-options .btn {
    min-width: 100px;
    height: 40px;
    padding: 0.5rem 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-options .date-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 600px;
    justify-content: center;
}

.view-options select {
    padding: 0.5rem;
    height: 40px;
}

.view-options .btn-add {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--light-text);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-lg);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
  min-width: 250px;
}

/* Buttons mit verspielten Effekten */
.btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--light-text);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-lg);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.custom-header-content {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-lg);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--shadow-color);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
}

/* Tabellen mit modernem Design */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 10px var(--shadow-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--primary-color);
  color: var(--light-text);
  font-weight: 500;
}

tr:hover {
  background-color: rgba(66, 165, 245, 0.2);
}

/* Formulare */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-dark);
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--rounded-sm);
  font-size: 1rem;
  transition: var(--transition);
  background-color: rgba(187, 222, 251, 0.2);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}

/* Footer mit organischem Design */
.site-footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--light-text);
  padding: 2rem 0;
  position: relative;
  margin-top: 3rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231976D2" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%231976D2" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231976D2"/></svg>');
  background-size: cover;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.copyright-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

/* Modal mit modernem Look */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--card-bg);
  margin: 3% auto;
  padding: 2rem;
  border-radius: var(--rounded-lg);
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--primary-dark);
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation */
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }
  
  nav ul.show {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Karten */
  .card {
    padding: 1rem;
    border-radius: var(--rounded-sm);
  }
  
  /* Footer auf Mobile ausblenden */
  .site-footer {
    display: none;
  }
  
  /* Alternative Mobile Footer */
  .mobile-footer {
    display: block;
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
  }
  
  /* Tabellen */
  .table-responsive {
    border-radius: 0;
  }
  
  th, td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  /* Desktop-spezifische Stile */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .menu-toggle {
    display: none;
  }
}

/* Spezielle verspielte Elemente */
.leaf-decoration {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2342A5F5"><path d="M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17 1.02.3 1.59.3C17 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5c0 1.78 2 4.25 6 4.25 1.5 0 3-.5 4-1l-1.5-3.5 3.5.5z"/></svg>');
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  transform: rotate(15deg);
}

.leaf-2 {
  bottom: 15%;
  right: 5%;
  transform: rotate(-10deg);
}

/* Animationen */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* MONATSÜBERSICHT - Modernes Kalenderdesign */
.month-view {
  background: white;
  border-radius: var(--rounded-lg);
  box-shadow: 0 10px 30px var(--shadow-color);
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.month-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.month-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

.month-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 1.5rem;
}

.month-nav button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.month-nav button:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* Wochentage nebeneinander */
.month-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--primary-light);
}

.month-grid-header-day {
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Kalenderraster */
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1px;
  background: var(--border-color);
}

.month-day {
  background: white;
  min-height: 120px;
  padding: 0.5rem;
  position: relative;
  transition: var(--transition);
}

.month-day:hover {
  background: var(--background-color);
  transform: translateY(-3px);
  z-index: 2;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.month-day-number {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-align: center;
}

.month-day.today .month-day-number {
  background: var(--accent-color);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.month-day.other-month {
  background: #f9f9f9;
  color: #aaa;
}

/* Diensttypen mit spezifischen Farben */
.service-item {
  color: white;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition);
  text-align: center;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Farben für verschiedene Diensttypen */
.service-Frühdienst-Rolli { background-color: #00ACC1; } /* Cyan */
.service-Spätdienst-Rolli { background-color: #D81B60; } /* Pink-Rot */
.service-Frühdienst-Neustadt { background-color: #3949AB; } /* Indigo */
.service-Spätdienst-Neustadt { background-color: #8E24AA; } /* Lila */
.service-WE1-Frühdienst-Rolli { background-color: #039BE5; } /* Hellblau */
.service-WE2-Frühdienst-Neustadt { background-color: #5E35B1; } /* Dunkellila */
.service-Urlaub { background-color: #FB8C00; } /* Orange */
.service-Krank { background-color: #E53935; } /* Rot */
.service-Frei { background-color: #1976D2; } /* Blau statt Grün */

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .month-grid-header-day {
    padding: 0.5rem;
    font-size: 0.7rem;
  }
  
  .month-grid {
    grid-auto-rows: minmax(60px, auto);
  }
  
  .month-day {
    min-height: 60px;
    padding: 0.25rem;
  }
  
  .month-day-number {
    font-size: 0.8rem;
  }
  
  .service-item {
    display: none;
  }
  
  .month-day:hover .service-item {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    background: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 10;
  }
}

/* Animation für Monatswechsel */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.month-grid {
  animation: fadeIn 0.5s ease-out;
}

/* Tooltip für Dienste */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  transition: var(--transition);
  pointer-events: none;
  z-index: 10;
}

[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Year View - Practical Layout */
.year-view .year-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
}

.year-month {
  background: var(--card-bg);
  border-radius: var(--rounded-md);
  padding: 1rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px var(--shadow-color);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 140px;
  position: relative;
}

.year-month::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
  border-radius: var(--rounded-md) var(--rounded-md) 0 0;
}

.year-month h3 {
  color: var(--primary-dark);
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 0;
}

.year-month-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.year-month p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--text-color);
  text-align: center;
  line-height: 1.4;
}

/* Quartalsgruppierung */
.year-month.q1 { border-left: 3px solid #00ACC1; }
.year-month.q2 { border-left: 3px solid #8E24AA; }
.year-month.q3 { border-left: 3px solid #FB8C00; }
.year-month.q4 { border-left: 3px solid #1976D2; } /* Blau statt Grün */

/* Responsive Anpassungen */
@media (max-width: 1024px) {
  .year-view .year-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .year-view .year-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .year-month {
    min-height: 110px;
    grid-template-columns: 100px 1fr;
    align-items: center;
  }
  
  .year-month h3 {
    text-align: left;
    padding-left: 1rem;
  }
  
  .year-month-content {
    align-items: flex-start;
  }
  
  .year-month p {
    text-align: left;
  }
}

/* Hover-Effekt */
.year-month:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--shadow-color);
  border-color: var(--accent-color);
}

/* Cloud-Spezifische Stile */
.cloud-icon {
    margin-right: 8px;
}

.file-icon {
    margin-right: 8px;
    color: var(--primary-color);
}

.file-type-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Tabellen für die Cloud */
@media (max-width: 768px) {
    .table-responsive table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
    
    .table-responsive th, 
    .table-responsive td {
        white-space: nowrap;
    }
}

/* Accounting spezifische Stile */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.denominations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.denomination-item {
    display: flex;
    flex-direction: column;
}

.denomination-item label {
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.denomination-item input {
    width: 100%;
}

.total-amount {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--background-color);
    border-radius: var(--rounded-sm);
    text-align: center;
}

/* Dashboard spezifische Stile */
.dashboard-card {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.stat-info {
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.stat-chart {
    height: 60px;
    margin-top: auto;
}

.main-chart-container {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-chart-container h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.main-chart-container canvas {
    width: 100% !important;
    height: 200px !important;
}

.announcements-container {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.announcement {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.announcement:last-child {
    border-bottom: none;
}

.announcement-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.announcement-header h4 {
    margin: 0;
    flex-grow: 1;
}

.announcement-date {
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-right: 0.5rem;
}

.announcement-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
}

.no-announcements {
    color: var(--text-color-light);
    text-align: center;
    padding: 1rem;
}

/* Button Icons */
.btn-icon {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 1.1rem;
    margin: 0 5px;
    padding: 5px 8px;
    transition: color 0.3s ease;
}

.btn-icon:hover {
    color: #007bff;
}

.btn-icon i {
    vertical-align: middle;
}

.btn-icon.delete:hover {
    color: #dc3545;
}

.nav-icon {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: #007bff;
}

.btn-add {
    background-color: #28a745;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

.btn-add:hover {
    background-color: #218838;
}

.btn-add i {
    margin-right: 5px;
}

/* Cloud spezifische Stile */
.action-icon {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0 5px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.action-icon:hover {
    transform: scale(1.2);
}

.fa-download:hover {
    color: #28a745;
}

.fa-trash-alt:hover {
    color: #dc3545;
}

.file-icon {
    margin-right: 8px;
    color: #495057;
}

/* Service spezifische Stile */
.service-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.service-table th, .service-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.service-table tr:hover {
    background-color: rgba(66, 165, 245, 0.1);
}

.month-day-header {
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .denominations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}
/* Chat-spezifische Stile */
.message {
    transition: all 0.3s ease;
}

.message:hover {
    background-color: rgba(187, 222, 251, 0.2);
}

.message.admin {
    border-left: 3px solid var(--primary-dark);
    padding-left: 10px;
}

.message.moderator {
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
}

#message-input {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--rounded-sm);
    font-size: 1rem;
    transition: var(--transition);
}

#message-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}

.emoji-option:hover {
    transform: scale(1.2);
}