/* style.css */
body {
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: #e5e7eb;
    color: black;
}
.header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  min-height: 100px;
}

.header img {
  position: absolute;
  left: 0;
  width: 180px;
  height: 100px;
  object-fit: contain;
}

h2 {
  margin-top: 10px; 
  color: black;
  text-align: center;
}

h3 {
    color: black;
    margin-top: 20px;
    text-align: left;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: black;
}
th {
    background-color: #4f46e5;
    color: #fff;
}
tr:hover {
    background-color: #f9f9f9;
}
a {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.icon {
    margin-right: 8px;
    font-size: 1rem;
}
.icon.folder {
    color: #f59e0b;
}
.icon.file {
    color: #3b82f6;
}
code {
    font-size: 0.85rem;
    color: #222;
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    word-break: break-all;
}
