.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-27 .elementor-element.elementor-element-33852f2f > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-33852f2f */.header-note {
      color: red;
      text-align: center;
      padding: 10px;
      font-weight: bold;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
      gap: 20px;
    }

    .sidebar {
      flex: 1;
      min-width: 200px;
      max-width: 250px;
      background: #e9f1ff;
      border: 1px solid #ccc;
      padding: 10px;
    }

    .sidebar h3 {
      background: #2e6db4;
      color: white;
      padding: 8px;
      margin: 10px 0 5px;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .sidebar li {
      margin: 5px 0;
      padding-left: 10px;
    }

    .main-content {
      flex: 3;
      min-width: 300px;
    }

    .main-content .app-note {
      background: yellow;
      padding: 5px;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .main-content h2 {
      text-align: center;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .job-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
    }

    .job-grid a {
      display: block;
      padding: 10px;
      border: 1px solid #333;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
    }

    /* Color Coding */
    .blue { color: blue; }
    .green { color: green; }
    .orange { color: darkorange; }
    .skyblue { color: #4fb4bf; }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .sidebar, .main-content {
        width: 100%;
      }
    }/* End custom CSS */