.emergency {
    font-size: 1.2em;
    color: #ffffff;
    background: #ff0000;
    padding: 10px;
}


.attritile {
    font-size: 1.2em;
    color: #b8ef21;
}

.site-title {
    font-size: 2em;
    color: #119af0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #6e5646;
    color: white;
    padding: 10px 20px;
}

.title-area {
    display: flex;
    align-items: center;
}

.site-name, .site-title {
    margin-right: 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.logo {
    height: 40px;
    margin-left: 20px; /* Adjust as needed */
}

.nav-menu a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.main-content {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.mayor-section {
    flex: 1;
    padding-right: 20px;
}

.mayor-paragraph {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.statistics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-box {
    background: white;
    padding: 10px;
    width: 30%;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 1.4em;
    font-weight: bold;
}

.news-slider-section {
    flex: 1;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    transition: transform 0.5s ease;
    display: flex;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

.news-description {
    background: white;
    padding: 15px;
    margin-top: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.popup-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;              /* move to left */
  right: auto;
  height: 100vh;
  width: 260px;         /* narrower for better fit */
  max-width: 90vw;
  background: #222;
  border-right: 1px solid #ccc;
  padding: 20px 12px 12px 12px;
  border-radius: 0 8px 8px 0;
  z-index: 1000;
  box-shadow: 4px 0 16px rgba(0,0,0,0.25);
  overflow-y: auto;
  
}

.popup-menu.show {
  display: block;
  opacity: 1;
}

.popup-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-menu li {
    margin: 7px 0; /* smaller gap between buttons */
}

.popup-menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 4px 0; /* less vertical padding */
    font-size: 1em;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    float: right;
    margin-bottom: 6px;
}

.language-selector {
    position: absolute;
    top: 15px;
    right: 350px;
    background: #6e5646;
    color: white;
}

#languageDropdown {
    font-size: 14px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.dot.active {
    background-color: white;
    border: 2px solid #000;
}

.search-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}

.search-container input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px 0 0 8px;
    outline: none;
    width: 200px;
}

.search-container button {
    padding: 8px 12px;
    border: none;
    background-color: #0078d40e;
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.search-container button:hover {
    background-color: #005ea6;
}
