/**
 * @file
 * Styly pro veřejné zobrazení provozu mateřské školy
 */

.studiografix-provoz-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.studiografix-provoz-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.studiografix-provoz-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.provoz-item {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.provoz-item:last-child {
  margin-bottom: 0;
}

.provoz-item strong {
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.95rem;
}

.provoz-item div {
  color: #34495e;
  font-size: 1rem;
  line-height: 1.4;
}

.studiografix-provoz-description {
  background: #fff;
  border-left: 4px solid #3498db;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: #2c3e50;
}

.studiografix-provoz-documents {
  margin-top: 3rem;
}

.documents-title {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #bdc3c7;
}

.documents-list {
  display: grid;
  gap: 0.75rem;
}

.document-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.document-item:hover {
  border-color: #3498db;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.15);
  transform: translateY(-1px);
}

.document-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.document-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3;
}

.document-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

.document-info {
  color: #7f8c8d;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.document-description {
  margin-top: 0.25rem;
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

.odvazka-img {
    height: 53px;
}

.odvazka-img img{
    width: auto;
    height: 53px;
}

/* Responsive design */
@media (max-width: 768px) {
  .studiografix-provoz-container {
    padding: 0.75rem;
  }
  
  .studiografix-provoz-title {
    font-size: 1.3rem;
  }
  
  .studiografix-provoz-info {
    padding: 1rem;
  }
  
  .studiografix-provoz-description {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .document-item {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .document-icon {
    align-self: flex-start;
  }
}

/* Zvýraznění typů dokumentů */
.document-type-pdf .document-icon {
  color: #e74c3c;
}

.document-type-image .document-icon {
  color: #9b59b6;
}

.document-type-word .document-icon {
  color: #3498db;
}

.document-type-unknown .document-icon {
  color: #95a5a6;
}