/* CSS Variablen für konsistente Werte */
:root {
  --primary: #FFA500;
  --primary-dark: #e69500;
  --secondary: #1E90FF;
  --secondary-dark: #0077cc;
  --dark: #333;
  --light: #f8f9fa;
  --gray: #e0e0e0;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --border-radius: 10px;
}

/* Reset und Basis-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

/* Verbesserte Container-Klasse */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
  min-height: 50px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 170px;
  height: 95px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
  outline: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  padding: 5px;
  z-index: 1001;
}

/* Hero Section mit verbesserter Transition */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 90px;
  padding: 20px;
  overflow: hidden; 
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* WICHTIG: Korrigierte CSS für den Fade-Effekt mit z-index */
.hero-bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  /* Hinzugefügt: Standard-Z-Index für alle Bilder */
  z-index: 1; 
  transition: opacity 2.0s ease-in-out; /* Übergang für 2 Sekunden */
}

.hero-bg-item.active {
  opacity: 1;
  /* Hinzugefügt: Höherer Z-Index für das aktive (überblendende) Bild */
  z-index: 2; 
}
/* ENDE WICHTIG */

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 3; /* Der Overlay-Dunkelheit muss über den Bildern sein */
}

.hero-content {
  position: relative;
  z-index: 4; /* Der Inhalt muss ganz oben sein */
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 30px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: red;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  text-align: center;
}
/* Rote Rahmen für spezifische Buttons */
.hero .btn[href*="Quick_PV_Anfrage"],
.hero .btn[href*="Quick_WP_Anfrage"] {
  border-color: red;
}
.btn:hover,
.btn:focus {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  outline: none;
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: transparent;
  color: white;
}

/* Hero Button Anpassungen */
.hero .btn {
  background-color: transparent;
  border-color: white;
  color: white;
  margin: 5px;
}

.hero .btn:hover,
.hero .btn:focus {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Section Styles */
section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
}

/* Stats Section */
.stats {
  background-color: var(--light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--dark);
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 30px;
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-form {
  background-color: var(--light);
  padding: 30px;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Map Section */
.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 50px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--primary);
  padding-left: 5px;
  outline: none;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover,
.social-links a:focus {
  background-color: var(--primary);
  transform: translateY(-3px);
  outline: none;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Counter Section */
.counter-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.counter-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary);
  font-family: 'Raleway', sans-serif;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid;
  font-family: inherit;
  font-weight: 500;
}

#accept-cookies {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

#accept-cookies:hover,
#accept-cookies:focus {
  background-color: transparent;
  color: var(--primary);
  outline: none;
}

#reject-cookies {
  background-color: transparent;
  border-color: white;
  color: white;
}

#reject-cookies:hover,
#reject-cookies:focus {
  background-color: white;
  color: black;
  outline: none;
}

/* Form Message Styles */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  display: none;
}

.success {
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

.error {
  background-color: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}

/* Chatbot Styles */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
  border: none;
}

.chatbot-toggle:hover,
.chatbot-toggle:focus {
  transform: scale(1.1);
  background: var(--primary-dark);
  outline: none;
}

.chatbot-toggle i {
  font-size: 24px;
}

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  height: 540px;
  background-color: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.chatbot-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 15px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chatbot-avatar i {
  font-size: 20px;
  color: var(--primary);
}

.chatbot-header-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.chatbot-header-text p {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chatbot-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fafafa;
}

.message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  line-height: 1.4;
  animation: fadeIn 0.4s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-message {
  background-color: white;
  color: #263238;
  border-bottom-left-radius: 5px;
  align-self: flex-start;
  border-left: 4px solid var(--secondary);
}

.user-message {
  background-color: var(--secondary);
  color: white;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}

.message-time {
  display: block;
  font-size: 0.6rem;
  opacity: 0.7;
  margin-top: 5px;
  text-align: right;
}

.chatbot-input-container {
  padding: 10px;
  background-color: white;
  border-top: 1px solid #e0e0e0;
}

.chatbot-input {
  display: flex;
  margin-bottom: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.chatbot-input input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.chatbot-input button {
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
}

.chatbot-input button:hover,
.chatbot-input button:focus {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  outline: none;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}

.quick-reply {
  background-color: #ECEFF1;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 5px;
}

.quick-reply:hover,
.quick-reply:focus {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  outline: none;
}

.quick-reply i {
  font-size: 0.8rem;
}

.typing-indicator {
  display: flex;
  align-items: center;
  margin-top: 5px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 18px;
  align-self: flex-start;
  border-left: 4px solid #FFC107;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: #90A4AE;
  border-radius: 50%;
  margin-right: 5px;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnimation {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
}

.suggestions-title {
  font-size: 0.8rem;
  color: #263238;
  margin-bottom: 8px;
  padding-left: 5px;
}

.info-box {
  background-color: #e3f2fd;
  border-radius: 12px;
  padding: 12px;
  margin: 8px 0;
  border-left: 4px solid var(--secondary);
  font-size: 0.85rem;
}

.info-box-title {
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: white;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    transition: var(--transition);
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .mobile-toggle .fa-bars {
    display: block;
  }
  
  .mobile-toggle .fa-times {
    display: none;
  }
  
  .mobile-toggle.active .fa-bars {
    display: none;
  }
  
  .mobile-toggle.active .fa-times {
    display: block;
  }
  
  .hero {
    margin-top: 70px;
    height: auto;
    min-height: 100vh;
    padding: 40px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero .btn {
    margin: 5px 0;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .chatbot-container {
    width: 90%;
    right: 5%;
    bottom: 80px;
    height: 60%;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 5px 0;
  }
  
  .logo img {
    width: 140px;
    height: 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-card, .project-card, .stat-card {
    padding: 20px;
  }
  
  .contact-form {
    padding: 20px;
    margin-top: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .chatbot-container {
    width: 100%;
    right: 0;
    bottom: 80px;
    border-radius: 0;
    height: 70%;
  }
  
  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .logo img {
    width: 120px;
    height: 70px;
  }
  .nav-links {
    padding: 60px 15px 15px;
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 12px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .chatbot-container {
    width: 100%;
    right: 0;
    bottom: 80px;
    border-radius: 0;
    height: 70%;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-item {
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #000080;
    --secondary: #000080;
  }
  .btn {
    border-width: 3px;
  }
}

.auto-style1 { border-width: 0px; }