:root {
    --bg: #f7f8fa;
    --text: #333333;
    --header-bg: #264653;
    --primary-accent: #2a9d8f;
    --secondary-accent: #e76f51;
    --hover-bg: #21867a;
    --divider: #e0e0e0;
    --card-bg: #ffffff;
    /* --highlight: #f4a261; */
  }

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    padding-top: 30px;
    padding-left: 100px;   
    padding-right: 100px; 
}

h1 {
    font-size: 2.0rem; /* Adjust size as needed */
    font-weight: bold; /* Optional: Adjust the thickness */
    margin: 20px 0;    /* Optional: Add spacing */
    color: #333;       /* Optional: Change the text color */
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--header-bg);
    color: #fff;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    
  }
  
  .nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
    font-size: 0.8em;
  }
  
  .nav a:hover {
    color: var(--hover-bg);
  }

  .submenu {
    margin-top: 20px;
    color: var(--primary-accent);
    padding-bottom: 20px;
}

.submenu i {
    color: var(--primary-accent);
    margin-right: 8px;
}

.submenu h2 {
    display: inline-block;
    margin: 0;
    font-size: 1.5rem;
}

.submenu a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.submenu a:hover {
    color: var(--hover-bg);
}


.new-tag {
    background-color: var(--secondary-accent);
    color: #fff;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.8em;
}
.deprecate {
    color: #888 !important;
    opacity: 0.6;
    text-decoration: line-through;
    /* pointer-events: none; */
    /* cursor: not-allowed; */
}
