body {
    font-family: sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
}
h2 {
    color: #007bff;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5em;
}
.useful-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    margin-bottom: 1.5em;
}
.link-group {
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}
.link-group h3 {
    margin: 0 0 0.5em;
    color: #333;
    font-size: 1em;
    font-weight: bold;
}
.link-group ul {
    list-style-type: disc;
    padding-left: 1.2em;
    margin: 0;
}
.link-group ul li a {
    color: #007bff;
    text-decoration: none;
}
.link-group ul li a:hover {
    text-decoration: underline;
}
.path-item {
    margin-bottom: 0.8em;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.path-item strong {
    font-weight: bold;
    color: #555;
}
.code-block {
    margin-top: 1.5em;
    padding: 1em;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow-x: auto;
}
.code-block pre {
    margin: 0;
    font-family: monospace, monospace;
    font-size: 0.9em;
    white-space: pre-wrap;
}
.copy-path-button {
    background-color: #f9f9f9;
    color: black;
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    flex-shrink: 0;
}
.copy-path-button:hover {
    background-color: #f0f0f0;
}
.shared-drive-list {
    list-style-type: disc;
    padding-left: 20px;
}
.shared-drive-list li {
    margin-bottom: 0.8em;
}
.code-block {
    margin-top: 1.5em;
    padding: 1em;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow-x: auto;
}
.code-block h3 {
    margin-top: 1em;
    font-size: 1.1em;
    color: #333;
}
.command-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.command-table th, .command-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    white-space: pre-wrap;
    font-family: monospace;
    vertical-align: top;
}
.command-table th {
    background-color: #f0f0f0;
    font-weight: bold;
    color: #2c3e50;
}
.command-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.command-table tbody tr:hover {
    background-color: #f5f5f5;
}
@media (max-width: 768px) {
    .command-table, .command-table th, .command-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .command-table thead {
        display: none;
    }
}
