/* === link types definition === */
/* keep the links in this order to work in CSS!*/
/* this section only applies to body content, no menu, nor submenu */

.content a:link,
.content a:visited,
.content a:active {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.content a:hover {
    color: red;
    font-weight: normal;
    text-decoration: underline;
}


/* === SAJAT HR vonal === */
.my-custom-hr {
  height: 2px;
  background: rgba(128, 128, 128, 0.4); /* semi-transparent red */
  border: none;
  width: 80%;
  margin: 2em auto;
}



/* === Body and Global === */
body {
    background-color: #dcd9d0;
    color: #000;
    font-family: Tahoma, Verdana, sans-serif;
    font-size: 13px; /* ⬅️ matches old layout */
    margin: 0;
    padding: 0;
}

/* === Page Wrapper === */
.page-wrapper {
    width: 80%;
 /*   min-width: 1024px; */
    min-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #aaa;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* === Header === */
.header {
    background-color: #d8d5cb;
/*  background-image: url("pict/main/header.png");*/
    background-image: url("pict/main/header_new.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    height: 130px;
}

/* === Main Menu === */
#main-menu {
    background: linear-gradient(to bottom, #4973a2, #264d73);
    padding: 10px;
    text-align: center;
}

#main-menu button {
    background-color: #eeeeee;
    border: 1px solid #444;
    padding: 6px 12px;
    margin: 0 2px;
    font-weight: bold;
    font-family: Tahoma;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
}

#main-menu button:hover {
    background-color: #d2d2d2;
}

/* === Submenu === */
#sub-menu {
    background-color: #e5e5e5;
    text-align: center;
    padding: 8px 0;
}

#sub-menu a {
    margin: 4px 8px;
    padding: 4px 6px;
    display: inline-block;
    text-decoration: none;
    color: #000080;
    font-size: 13px;
    border-radius: 2px;
}

#sub-menu a:hover {
    background-color: #c0d8f0;
}

#sub-menu a.active {
    background-color: #4973a2;
    color: #ffffff;
    font-weight: bold;
}

/* New styles for disabled links */
#sub-menu a.disabled-link {
    color: #999; /* Grey out the text */
    cursor: default; /* Change cursor to default, indicating it's not clickable */
    text-decoration: none; /* Remove underline */
}

#sub-menu a.disabled-link:hover {
    text-decoration: none; /* Ensure no underline on hover */
    color: #999; /* Keep color grey on hover */
    background-color: transparent; /* Prevent hover background change */
}

/* === Content === */
.content {
    background-color: #ffffff;
    padding: 20px;
    min-height: 300px;
    line-height: 1.6;
}

/* === Footer === */
.footer {
    background-color: #e5e5e5;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #555;
    border-top: 1px solid #ccc;
    position: relative;
}

/* === SEO Nav (Footer Mini Menu) === */
#seo-nav {
    text-align: center;
    font-size: 10px;
    margin: 4px 0 8px 0;
    opacity: 0.4;
    letter-spacing: 0.06em;
    font-family: Tahoma, Verdana, sans-serif;
}

#seo-nav a {
    color: #444;
    text-decoration: none;
    padding: 0 3px;
    transition: color 0.2s;
}

#seo-nav a:hover {
    text-decoration: underline;
    color: #003366;
}

/* === Headings === */
h1 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin: 20px 0 10px;
    font-family: Tahoma, Verdana, sans-serif;
}

h2 {
    font-size: 14px;
    font-weight: bold;
    color: black;
    margin: 18px 0 10px;
}

h3 {
    font-size: 12px;
    font-weight: bold;
    color: #004080;
    ma
