/* styles.css */

/* Insert Material Design styling here */

/* Add a CSS class to support right-to-left languages */
.rtl {
  direction: rtl;
}

.hidden {
     display: none;
}

body {
  font-family: "Roboto", sans-serif;
  margin: auto;
  padding: 10px;
  width: 100%;
  display: block;
  flex-direction: column;
  align-items: flex-end;
  background-color: #f8f8f8; /* Set a calm background color */
}

.page-content {
  margin: auto;
  padding: 10px;
  width: 80%;
}

header {
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
}

h1 {
  color: #333; /* Set a calm heading color */
  margin: 0;
}

.language-selector {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 16px;
}

.language-selector button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #666; /* Set a calm color for language buttons */
}

.language-selector button:hover {
  background-color: #f0f0f0; /* Set a highlight background color */
}

.tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.tab {
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px 4px 0 0;
  background-color: #f4f4f4; /* Set a calm background color for inactive tabs */
  color: #666; /* Set a calm color for inactive tabs */
}

.tab.active {
  background-color: #fff;
  border-bottom: none;
  color: #333; /* Set a calm color for active tab */
}

.tab:hover {
  background-color: #E0E0B0; /* Set a highlight background color */
}

.tab-content {
  padding: 16px;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 4px 4px 4px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
}

footer {
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color: #999; /* Set a calm color for footer text */
}

.footer-link {
  color: #999; /* Set a calm color for footer links */
  text-decoration: none;
}

.footer-link:hover {
  color: #666; /* Set a calm color for footer links on hover */
}

.main-content {
  margin: 16px;
}

h2 {
  color: #333; /* Set a calm heading color */
}

p {
  color: #666; /* Set a calm color for paragraphs */
}

li {
  margin-bottom: 16px
}