/*
Theme Name: MarItSol Theme
Theme URI: https://maritsol.at
Author: Andrijana Marijan
Author URI: https://maritsol.at
Description: A block-based custom WordPress theme.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: text-domain
Tags: block-patterns, full-site-editing
*/

/* Hide page titles (only on pages, not posts) */
.page .wp-block-post-title {
    display: none;
  }

  /* hiding cards */
  
.expandable-cards {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.card {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.card summary {
  cursor: pointer;
  padding: 15px;
  background: #f4f4f4;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card summary::-webkit-details-marker {
  display: none; /* Hides default triangle icon in WebKit browsers */
}

.card-content {
  padding: 15px;
  border-top: 1px solid #eee;
}
.card summary::after {
  content: '▼';
  transition: transform 0.3s ease;
  margin-left: auto;
}

.card[open] summary::after {
  transform: rotate(180deg);
}

.langfix ul {
  display: flex;
  margin-bottom:1rem;
  justify-content: center;
  align-items: center;
}

/* Make header fixed */
.headerfixed {
    position: fixed; 
    background: white;
    width: 90%;
    z-index: 999;
    /* Prevent content overflow if too large  overflow: hidden; */
    box-sizing: border-box;
	margin: 0 auto !important;
}

.test {
	border: 1px solid green;
}