/**
 * Custom styling for the WooCommerce My Account page layout.
 */
.byteforge-account-layout {
    display: flex;
    gap: 2rem;
}
.byteforge-account-layout .woocommerce-MyAccount-navigation {
    flex: 0 0 300px;
}
.byteforge-account-layout .woocommerce-MyAccount-content {
    flex: 1;
}
.byteforge-account-layout .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.byteforge-account-layout .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
}
.byteforge-account-layout .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 0.5rem 1rem;

    border-radius: 4px;
    text-decoration: none;
    color: inherit;
}
.byteforge-account-layout .woocommerce-MyAccount-navigation a:hover {
    background-color: #f5f5f5;
}
@media (max-width: 768px) {
    .byteforge-account-layout {
        flex-direction: column;
    }
    .byteforge-account-layout .woocommerce-MyAccount-navigation {
        flex: 1 0 auto;
    }
}
/* Layout for login and registration forms */
.byteforge-auth__columns {
    display: flex;
    gap: 2rem;
}
.byteforge-auth__column {
    flex: 1;
}
/* Larger text for authentication headings */
.byteforge-auth__column legend,
.byteforge-auth__single legend {
    font-size: 1.5rem;
}
.byteforge-auth__reset {
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .byteforge-auth__columns {
        flex-direction: column;
    }
}
