/*
* MYPUBLICIPADDRESS.COM - Unified Stylesheet
* Version: 1.0
* Description: Professional dark theme for all network tools and pages.
*/

/* Base styles from Tailwind's preflight (simplified) */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #374151;
    /* Adjusted border color for dark theme */
}

::before,
::after {
    --tw-content: '';
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: inherit;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0d1117;
    /* Deep dark background */
    color: #c9d1d9;
    /* Light text color for dark background */
    padding-top: 5rem;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    color: #f0f6fc;
    /* Brighter color for headings */
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Fixed Header Bar */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #161b22;
    /* Slightly lighter dark for header */
    color: #f0f6fc;
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-bottom: 1px solid #00e0e0;
    /* Accent border */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-content {
        padding: 0 2.5rem;
        flex-wrap: nowrap;
    }
}

.header-bar .header-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 800;
    margin: 0;
}

.header-bar .header-title a {
    color: #f0f6fc;
    text-decoration: none;
}

.header-bar .header-title a:hover {
    opacity: 0.8;
}

@media (min-width: 640px) {
    .header-bar .header-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 1rem;
}

@media (max-width: 639px) {
    .main-nav {
        flex-direction: column;
        width: 100%;
        background-color: #161b22;
        position: absolute;
        top: 5rem;
        left: 0;
        padding: 1rem 0;
        box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .main-nav .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
        width: 100%;
    }
}

.nav-link {
    color: #c9d1d9;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    font-weight: 500;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #00e0e0;
    background-color: rgba(0, 224, 224, 0.1);
}

/* Hamburger Menu Icon */
.hamburger-menu {
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
    display: none;
}

@media (max-width: 639px) {
    .hamburger-menu {
        display: flex;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #f0f6fc;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Main Layout & Page Structure */
.main-layout {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 1.5rem auto;
    padding: 1rem;
}

@media (min-width: 1024px) {
    .main-layout {
        grid-template-columns: 2fr 1fr;
        align-items: flex-start;
    }
}

.page-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.container {
    background-color: #161b22;
    border-radius: 1rem;
    border: 1px solid #30363d;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.h1-main {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    text-align: center;
    color: #f0f6fc;
}

@media (min-width: 640px) {
    .h1-main {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* Forms & Inputs */
.input-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .input-section {
        grid-template-columns: 1fr 1fr;
    }
}

.input-group {
    background-color: #0d1117;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #30363d;
}

.block {
    display: block;
}

.text-gray-700 {
    color: #c9d1d9;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="number"],
select {
    border: 1px solid #30363d;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.2s ease-in-out;
    outline: none;
    background-color: #21262d;
    color: #c9d1d9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    /* Firefox specific for number input */
}

select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4" viewBox="0 0 292.4 292.4"%3E%3Cpath fill="%23c9d1d9" d="M287,197.9c-3.7,3.7-9.7,3.7-13.4,0L146.2,69.3L18.8,197.9c-3.7,3.7-9.7,3.7-13.4,0c-3.7-3.7-3.7-9.7,0-13.4l133.8-133.8c1.8-1.8,4.3-2.8,6.7-2.8s4.9,1,6.7,2.8L287,184.5C290.7,188.2,290.7,194.2,287,197.9z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    padding-right: 2.5rem;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    border-color: #00e0e0;
    box-shadow: 0 0 0 3px rgba(0, 224, 224, 0.3);
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.error-message {
    color: #f87171;
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: left;
}

.hidden {
    display: none !important;
}

/* Buttons */
button {
    background-image: linear-gradient(to right, #00e0e0, #1c86ee);
    color: #0d1117;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: 1rem auto 0 auto;
    border: none;
}

button:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(28, 134, 238, 0.4);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.clear-button {
    background-image: none;
    background-color: #30363d;
    color: #c9d1d9;
}

.clear-button:hover {
    background-color: #484f58;
    box-shadow: none;
}

/* Result Displays and Separators */
#resultSeparator,
#ipv6ResultSeparator,
#fileSizeResultSeparator {
    height: 3px;
    background-image: linear-gradient(to right, #00e0e0, #1c86ee);
    border-radius: 9999px;
    margin: 2rem 0;
    width: 80%;
    align-self: center;
    animation: expandLine 0.5s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80%;
        opacity: 1;
    }
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background-color: #21262d;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #30363d;
    text-align: center;
}

.result-item strong {
    display: block;
    font-size: 1rem;
    color: #8b949e;
    margin-bottom: 0.5rem;
}

.result-item span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00e0e0;
    word-break: break-all;
}

/* File Size Converter specific result grid */
#fileSizeResults.result-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

/* Port Scanner specific result display */
.result-display {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
    display: none;
    transition: all 0.3s ease-in-out;
}

.result-display.open {
    color: #4ade80;
    /* Green */
    border-color: #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
}

.result-display.closed {
    color: #f87171;
    /* Red */
    border-color: #f87171;
    background-color: rgba(248, 113, 113, 0.1);
}

.result-display.checking {
    color: #fcd34d;
    /* Amber */
    border-color: #fcd34d;
    background-color: rgba(252, 211, 77, 0.1);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.01);
        opacity: 0.8;
    }
}

/* Static Pages (About, Support) Content */
.text-content-section {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #c9d1d9;
}

.text-content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0f6fc;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #30363d;
}

.text-content-section p {
    margin-bottom: 1rem;
}

.text-content-section ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.text-content-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.text-content-section li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #00e0e0;
    font-weight: bold;
}

.text-content-section a {
    color: #00e0e0;
    text-decoration: none;
    font-weight: 500;
}

.text-content-section a:hover {
    text-decoration: underline;
}

.warning-box {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    color: #fcd34d;
    padding: 1rem;
    border-radius: 0.75rem;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
}

.warning-box strong {
    color: #fef08a;
}

/* FAQ Accordion */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #30363d;
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-question {
    font-weight: 600;
    color: #f0f6fc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #21262d;
    transition: background-color 0.2s ease-in-out;
}

.faq-question:hover {
    background-color: #30363d;
}

.faq-question .arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease-in-out;
}

.faq-question.active .arrow {
    transform: rotate(90deg);
    color: #00e0e0;
}

.faq-answer {
    color: #c9d1d9;
    background-color: #161b22;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    max-height: 500px;
    /* Adjust if answers are longer */
    padding: 1.5rem;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

/* Sidebar */
.sidebar {
    background-color: #161b22;
    border-radius: 1rem;
    border: 1px solid #30363d;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    width: 100%;
}

.sidebar h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0f6fc;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.sidebar th,
.sidebar td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #30363d;
    text-align: left;
}

.sidebar th {
    background-color: #21262d;
    font-weight: 600;
    color: #c9d1d9;
}

.sidebar tbody tr:nth-child(even) {
    background-color: #21262d;
}

.sidebar td {
    color: #c9d1d9;
    font-family: monospace;
}

.sidebar td:first-child {
    font-weight: bold;
    color: #f0f6fc;
    font-family: ui-sans-serif, system-ui, sans-serif;
}

.sidebar ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #30363d;
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar .sidebar-link {
    color: #00e0e0;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: color 0.2s, background-color 0.2s;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.sidebar .sidebar-link:hover {
    color: #f0f6fc;
    background-color: rgba(0, 224, 224, 0.1);
}

/* Footer */
.main-footer {
    background-color: #161b22;
    color: #c9d1d9;
    padding: 2.5rem 1rem;
    margin-top: auto;
    border-top: 1px solid #00e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.footer-widget {
    text-align: center;
}

.footer-widget h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f0f6fc;
}

.footer-widget ul {
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget a {
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-widget a:hover {
    color: #00e0e0;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    margin-top: 0;
    font-size: 0.875rem;
    color: #8b949e;
}

/* Ad Placeholders & Utility */
.ad-placeholder {
    background-color: #21262d;
    border: 1px dashed #484f58;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    font-family: monospace;
    color: #8b949e;
    font-size: 0.9rem;
    margin: 1.5rem auto 0 auto;
    max-width: 90%;
}

.ad-placeholder.sidebar-ad {
    margin: 0 0 1.5rem 0;
    width: 100%;
}

.ad-placeholder small {
    display: block;
    margin-top: 0.5rem;
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #00e0e0;
    color: #0d1117;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0.9;
    line-height: 1;
}

#backToTopBtn:hover {
    background-color: #1c86ee;
    opacity: 1;
}
/* --- Search Box for Port List --- */
.search-box-container {
    margin-bottom: 1.5rem;
    max-width: 500px;
    /* Or another width you prefer */
}

.search-box-container label {
    font-weight: 600;
    color: #c9d1d9;
}

.port-search-input {
    width: 100%;
    padding-left: 2.5rem !important;
    /* Make space for icon */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%238b949e"><path fill-rule="evenodd" d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" clip-rule="evenodd" /></svg>');
    background-repeat: no-repeat;
    background-position: 0.75rem center;
    background-size: 1.25rem 1.25rem;
}
/* --- Password Generator Specific Styles --- */
.password-output-group {
    display: flex;
    align-items: stretch;
}

.password-output-group input {
    flex-grow: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right-width: 0;
    font-family: monospace;
    font-size: 1.25rem;
    color: #f0f6fc;
}

.password-output-group input:focus {
    z-index: 10;
}

.copy-button {
    background-image: none;
    background-color: #00e0e0;
    color: #0d1117;
    margin: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex-shrink: 0;
    /* Prevents button from shrinking */
}

.copy-button:hover {
    background-color: #1c86ee;
}

/* Custom Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #30363d;
    outline: none;
    border-radius: 5px;
    padding: 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #00e0e0;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #161b22;
    transition: background-color .2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #1c86ee;
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #00e0e0;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #161b22;
}

/* Custom Checkboxes */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #21262d;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #30363d;
}

.checkbox-item input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0d1117;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #484f58;
    border-radius: 0.25rem;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #00e0e0;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-item input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.checkbox-item label {
    cursor: pointer;
    font-weight: 500;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    display: none;
    /* Hidden by default */
    border: 1px solid;
    transition: all .3s;
}

.password-strength.weak {
    background-color: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border-color: #f87171;
}

.password-strength.medium {
    background-color: rgba(252, 211, 77, 0.1);
    color: #fcd34d;
    border-color: #fcd34d;
}

.password-strength.strong {
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border-color: #4ade80;
}

.password-strength.very-strong {
    background-color: rgba(0, 224, 224, 0.15);
    color: #00e0e0;
    border-color: #00e0e0;
}
/* --- 404 Error Page Specific Styles --- */
.error-container {
    text-align: center;
    padding: 3rem 1.5rem;
}

.error-code {
    font-size: 6rem;
    /* 96px */
    font-weight: 800;
    /* extrabold */
    line-height: 1;
    color: #00e0e0;
    text-shadow: 0 0 15px rgba(0, 224, 224, 0.3);
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow:
            0 0 4px #00e0e0,
            0 0 11px #00e0e0,
            0 0 19px #00e0e0,
            0 0 40px #1c86ee,
            0 0 80px #1c86ee,
            0 0 90px #1c86ee,
            0 0 100px #1c86ee,
            0 0 150px #1c86ee;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

.error-title {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.error-message {
    font-size: 1.125rem;
    /* text-lg */
    color: #c9d1d9;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.error-links .nav-link {
    display: inline-block;
    margin: 0.5rem;
    border: 1px solid #30363d;
}
/* --- Social Media Icons in Footer --- */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #c9d1d9;
    /* Icon color */
    border: 1px solid #30363d;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #00e0e0;
    border-color: #00e0e0;
    transform: translateY(-3px);
    color: #0d1117;
    /* Icon color on hover */
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    /* The SVG will inherit the color from the 'a' tag */
}

/* --- Standalone Social Bar in Footer --- */
.footer-social-bar {
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #30363d;
}
