  .enterprise-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .logo-icon {
    width: 55px;
    height: 55px;
    display: inline-block;
    background-image: url('../icons/logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .github-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../icons/github.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .linkedin-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../icons/linkedin.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .twitter-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../icons/twitter-x.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    
  }

  .cv-button {
    font-size: 0.8rem;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .carousel-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    margin-right: 20px;
  }

  .social-icons {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }

  .timeline {
    position: relative;
    padding-left: 30px;
    list-style: none;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
  }

  .code-snippet pre{
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 3px solid #339df3;
    color: #666;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
    line-height: 1.6;
    padding: 0.5em 0;
  }

  .code-snippet code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  [data-theme="dark"] .code-snippet pre{
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #339df3;
    color: #666;
  }

  .code-snippet .keyword {
    color: #339df3;
    font-weight: bold;
  }

  .code-snippet .decorator {
      color: #ff6b6b;
      font-weight: bold;
  }

  .code-snippet .string {
      color: #51cf66;
  }

  .code-snippet .comment {
      color: #868e96;
      font-style: italic;
  }

  .code-snippet .code-line {
      display: block;
      margin: 0;
      padding: 0;
  }

  [data-theme="dark"] .code-snippet .keyword {
    color: #74c0fc;
  }

  [data-theme="dark"] .code-snippet .decorator {
    color: #ff8787;
  }

  [data-theme="dark"] .code-snippet .string {
    color: #69db7c;
  }

  [data-theme="dark"] .code-snippet .comment {
    color: #adb5bd;
  }

  [data-theme="dark"] .twitter-icon {
    background-image: url('../icons/twitter-x-white.svg');
  }
  [data-theme="dark"] .logo-icon {
    background-image: url('../icons/logo-white.svg');
  }

  [data-theme="dark"] .linkedin-icon {
    background-image: url('../icons/linkedin-white.svg');
  }

  [data-theme="dark"] .github-icon {
    background-image: url('../icons/github-white.svg');
  }

