/* Global Styles */
body {
    min-height: 100vh;
    background-color: #121212;
    color: #e0e0e0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* Typography */
h1, h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #0ff88f;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    margin-left: 32px;
}

/* Navbar */
.navbar {
    background-color: #121212;
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}


.avatar {
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}

.nav-list li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #00bcd4;
}

/* Links */
a:link,
a:visited {
    color: #00bcd4;
    transition: color 0.3s;
}

a:hover {
    color: #4dd0e1;
}

/* Warning Box */
.warning {
    background-color: #d32f2f;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    margin: 20px 0;
}

/* Markdown Tables */
.libimobiledevices .markdownTable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.libimobiledevices .markdownTable td,
.libimobiledevices .markdownTable th {
    border: 2px solid #424242;
    padding: 12px 16px;
    text-align: left;
}

.libimobiledevices .markdownTable tbody tr:nth-of-type(odd) {
    background-color: #1e1e1e;
}

.libimobiledevices th.markdownTableHeadLeft,
.libimobiledevices th.markdownTableHeadRight,
.libimobiledevices th.markdownTableHeadCenter,
.libimobiledevices th.markdownTableHeadNone {
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #00bcd4;
    border-radius: 3px 3px 0 0;
}

footer {
    margin-top: auto;
}