.app-header-avatar {
    width: 13rem;
    height: 13rem;
    border-radius: 100%;
    border: 0.5rem solid $primary-color;
}

.app-header {
    padding: 2.5em;
    background: $darkest-color;
    text-align: center;
}

.app-container {
    padding: 2.5rem;
}

.app-header-social {
    font-size: 2em;
    color: $lightest-color;

    a {
        margin: 0 0.1em;
    }
}

@media (min-width: 940px) {
    .app-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        min-height: 100vh;
    }

    .app-container {
        max-width: 65rem;
        margin-left: 20rem;
    }
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: rgba(53, 59, 67, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

table th {
    background-color: rgba(36, 41, 48, 0.8);
    color: #ffffff;
    font-weight: bold;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #57cc8a;
}

table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(175, 186, 196, 0.2);
    vertical-align: top;
}

table tr:nth-child(even) {
    background-color: rgba(36, 41, 48, 0.3);
}

table tr:hover {
    background-color: rgba(87, 204, 138, 0.1);
    transition: background-color 0.2s ease;
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 8px 12px;
    }
}

/* Brand icon colors */
.icon-brand-bluesky {
    fill: #0085FF;
}

.icon-brand-mastodon {
    fill: #6364FF;
}

/* GitHub - striped dark gray */
.icon-github {
    fill: url(#github-stripes);
}

/* LinkedIn - striped blue */
.icon-linkedin {
    fill: url(#linkedin-stripes);
}

/* SVG pattern definitions - add to page */
.app-header-social svg defs {
    display: block;
}