html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
}

.right-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 120px;
  background-color: #ad0000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
  padding-top: 20px;
}

.red-line {
  display: none;
}

.panel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 40px);
  width: 100%;
}

.top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.panel-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  background-color: white;
  padding: 5px;
  will-change: transform;
}

.un-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: none;
  border-radius: 0;
}

.bottom-logo {
  margin-bottom: 20px;
}

.main-content {
  margin-right: 140px;
  padding: 40px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 80px);
  text-align: center;
  padding-top: 60px;
}

.main-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 30px;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-button {
  padding: 20px 25px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 600;
  font-family: 'Arial', 'Helvetica', sans-serif;
  text-align: center;
  transition: opacity 0.2s ease;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  will-change: opacity;
}

.side-button:hover {
  opacity: 0.8;
}

.side-button.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.main-content {
  margin-right: 140px;
  padding: 40px;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.main-content h1 {
  color: #ad0000;
  font-size: 28px;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.news-container {
  max-width: 800px;
  margin: 0 auto;
}

.news-post {
  background-color: #f9f9f9;
  border-left: 4px solid #ad0000;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
  box-sizing: border-box;
}

.news-post-content {
  margin-top: 10px;
}

.news-date {
  color: #ad0000;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-post h3 {
  color: #333;
  margin: 0 0 10px 0;
  font-size: 20px;
}

.news-post p {
  margin: 0;
  color: #666;
}

.instagram-link {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.instagram-link a {
  color: #ad0000;
  text-decoration: none;
  font-weight: bold;
}

.instagram-link a:hover {
  text-decoration: underline;
}

.admin-link {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  color: #666;
  font-size: 14px;
}

.admin-link a {
  color: #666;
  text-decoration: underline;
}

.admin-link a:hover {
  color: #ad0000;
}

.countries-list {
  max-width: 800px;
  margin: 0 auto;
}

.country-item {
  background-color: #f9f9f9;
  border-left: 4px solid #ad0000;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.country-item h3 {
  color: #ad0000;
  margin: 0 0 10px 0;
  font-size: 18px;
}

.country-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}