@charset "utf-8";
/* CSS Document */
    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9fafc;
      color: #333;
      margin: 0;
      padding: 30px;
    }

    .menu-container {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      padding: 30px;
      max-width: 720px;
      margin: auto;
      transition: all 0.3s ease-in-out;
    }

    .menu-container .title {
      text-align: center;
      font-size: 24px;
      color: #007acc;
      margin-bottom: 24px;
      font-weight: 600;
      border-bottom: 2px solid #007acc;
      padding-bottom: 10px;
    }

    #menuContent ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    #menuContent li {
      margin-bottom: 14px;
    }

    #menuContent li a {
      display: flex;
      align-items: center;
      padding: 12px 20px;
      border-radius: 10px;
      background: #f0f4f8;
      color: #007acc;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    #menuContent li a::before {
      content: "📌";
      margin-right: 12px;
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    #menuContent li a:hover {
      background-color: #dbeeff;
      transform: translateX(4px);
    }

    #menuContent li a:hover::before {
      transform: rotate(20deg);
    }

    .toggle-btn {
      background-color: #007acc;
      color: white;
      border: none;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      margin-top: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .toggle-btn:hover {
      background-color: #005f99;
    }

    .hidden {
      display: none;
    }
	
	body {
        font-family: Arial, sans-serif;
        background-color: #f4f7fa;
        margin: 0;
        padding: 20px;
        color: #333;
    }
    .container {
        max-width: 800px;
        margin: auto;
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    h1 {
        text-align: center;
        color: #005a9c;
    }
    h2 {
        color: #0073c0;
        margin-top: 30px;
    }
    p {
        line-height: 1.6;
        text-align: justify;
    }
    ul {
        padding-left: 20px;
    }
    .info-box {
        background-color: #e8f4fd;
        border-left: 5px solid #0073c0;
        padding: 15px;
        margin-top: 20px;
    }
    .issn {
        font-weight: bold;
        color: #d9534f;
    }